We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 265ee47 + 6ff92ec commit 06548d2Copy full SHA for 06548d2
2 files changed
azure-pipelines.yml
@@ -55,6 +55,12 @@ stages:
55
Windows_py311:
56
vmImage: 'windows-latest'
57
python.version: '3.11'
58
+ Windows_py312:
59
+ vmImage: 'windows-latest'
60
+ python.version: '3.12'
61
+ Windows_py313:
62
63
+ python.version: '3.13'
64
maxParallel: 4
65
pool:
66
vmImage: '$(vmImage)'
lib/matplotlib/tests/test_animation.py
@@ -520,7 +520,7 @@ def test_disable_cache_warning(anim):
520
521
def test_movie_writer_invalid_path(anim):
522
if sys.platform == "win32":
523
- match_str = r"\[WinError 3] .*'\\\\foo\\\\bar\\\\aardvark'"
+ match_str = r"\[WinError 3] .*\\\\foo\\\\bar\\\\aardvark'"
524
else:
525
match_str = r"\[Errno 2] .*'/foo"
526
with pytest.raises(FileNotFoundError, match=match_str):
0 commit comments