mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Skip downgrade tests on windows
This commit is contained in:
parent
25f723adf8
commit
4343d8f0c0
1 changed files with 5 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue