Skip downgrade tests on windows

This commit is contained in:
Daniel A. Wozniak 2024-11-08 00:00:57 -07:00 committed by Daniel Wozniak
parent 25f723adf8
commit 4343d8f0c0

View file

@ -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,