8000 debug gtk3 failure on travis. · matplotlib/matplotlib@0703180 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0703180

Browse files
committed
debug gtk3 failure on travis.
1 parent aeebd35 commit 0703180

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ci/travis/test_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ fi
1717

1818
echo The following args are passed to pytest $PYTEST_ARGS $RUN_PEP8
1919

20-
python -mpytest $PYTEST_ARGS $RUN_PEP8
20+
python -mpytest $PYTEST_ARGS $RUN_PEP8 lib/matplotlib/tests/test_backends_interactive.py::test_backend

lib/matplotlib/backends/backend_gtk3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ def _timer_set_interval(self):
6666
self._timer_stop()
6767
self._timer_start()
6868

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)
7172

7273
# Gtk timeout_add() requires that the callback returns True if it
7374
# is to be called again.

0 commit comments

Comments
 (0)
293F
0