8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeebd35 commit 0703180Copy full SHA for 0703180
ci/travis/test_script.sh
@@ -17,4 +17,4 @@ fi
17
18
echo The following args are passed to pytest $PYTEST_ARGS $RUN_PEP8
19
20
-python -mpytest $PYTEST_ARGS $RUN_PEP8
+python -mpytest $PYTEST_ARGS $RUN_PEP8 lib/matplotlib/tests/test_backends_interactive.py::test_backend
lib/matplotlib/backends/backend_gtk3.py
@@ -66,8 +66,9 @@ def _timer_set_interval(self):
66
self._timer_stop()
67
self._timer_start()
68
69
- def _on_timer(self):
70
- TimerBase._on_timer(self)
+ def _on_timer(self, *args):
+ print("===>", args)
71
+ TimerBase._on_timer(self, *args)
72
73
# Gtk timeout_add() requires that the callback returns True if it
74
# is to be called again.
0 commit comments