Skip to content

Commit

Permalink
Skip downgrade tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Nov 8, 2024
1 parent 57209bb commit 25774d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,11 @@ def pkg_matrix(
# )
# else:
# ctx.info(f"No {version} ({backend}) for {distro_slug} at {prefix}")
for session in ("upgrade", "downgrade"):
if name == "windows":
sessions = ("upgrade",)
else:
sessions = ("upgrade", "downgrade")
for session in sessions:
_matrix.append(
{
"tests-chunk": session,
Expand Down

0 comments on commit 25774d3

Please sign in to comment.