Thanks to visit codestin.com Credit goes to github.com
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 9d0420b commit f6bb9eeCopy full SHA for f6bb9ee
lib/matplotlib/tests/test_pickle.py
@@ -1,5 +1,7 @@
1
from io import BytesIO
2
import ast
3
+import os
4
+import sys
5
import pickle
6
import pickletools
7
@@ -316,6 +318,11 @@ def _test_axeswidget_interactive():
316
318
pickle.dumps(mpl.widgets.Button(ax, "button"))
317
319
320
321
+@pytest.mark.xfail( # https://github.com/actions/setup-python/issues/649
322
+ ('TF_BUILD' in os.environ or 'GITHUB_ACTION' in os.environ) and
323
+ sys.platform == 'darwin' and sys.version_info[:2] < (3, 11),
324
+ reason='Tk version mismatch on Azure macOS CI'
325
+ )
326
def test_axeswidget_interactive():
327
subprocess_run_helper(
328
_test_axeswidget_interactive,
0 commit comments