8000 CI: add py312 and py313 on windows on azure to test matrix by tacaswell · Pull Request #29473 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

CI: add py312 and py313 on windows on azure to test matrix #29473

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ stages:
Windows_py311:
vmImage: 'windows-latest'
python.version: '3.11'
Windows_py312:
vmImage: 'windows-latest'
python.version: '3.12'
Windows_py313:
vmImage: 'windows-latest'
python.version: '3.13'
maxParallel: 4
pool:
vmImage: '$(vmImage)'
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/tests/test_animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@

def test_movie_writer_invalid_path(anim):
if sys.platform == "win32":
match_str = r"\[WinError 3] .*'\\\\foo\\\\bar\\\\aardvark'"
match_str = r"\[WinError 3] .*\\\\foo\\\\bar\\\\aardvark'"

Check warning on line 523 in lib/matplotlib/tests/test_animation.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/tests/test_animation.py#L523

Added line #L523 was not covered by tests
else:
match_str = r"\[Errno 2] .*'/foo"
with pytest.raises(FileNotFoundError, match=match_str):
Expand Down
Loading
0