File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,9 @@ before_script:
187
187
sh -e /etc/init.d/xvfb start
188
188
fi
189
189
190
- script : ci/travis/test_script.sh
190
+ script : |
191
+ python -mpytest $PYTEST_ARGS $RUN_PEP8 lib/matplotlib/tests/test_backends_interactive.py
192
+
191
193
192
194
before_cache :
193
195
- rm -rf $HOME/.cache/matplotlib/tex.cache
Original file line number Diff line number Diff line change 17
17
18
18
echo The following args are passed to pytest $PYTEST_ARGS $RUN_PEP8
19
19
20
- python -mpytest $PY
8000
TEST_ARGS $RUN_PEP8
20
+ python -mpytest $PYTEST_ARGS $RUN_PEP8 lib/matplotlib/tests/test_backends_interactive.py::test_backend
Original file line number Diff line number Diff line change @@ -66,8 +66,9 @@ def _timer_set_interval(self):
66
66
self ._timer_stop ()
67
67
self ._timer_start ()
68
68
69
- def _on_timer (self ):
70
- TimerBase ._on_timer (self )
69
+ def _on_timer (self , * args ):
70
+ print ("===>" , args )
71
+ TimerBase ._on_timer (self , * args )
71
72
72
73
# Gtk timeout_add() requires that the callback returns True if it
73
74
# is to be called again.
You can’t perform that action at this time.
0 commit comments