Fix windows download pkg skip logic

This commit is contained in:
Daniel A. Wozniak 2025-01-03 14:22:31 -07:00 committed by Daniel Wozniak
parent 4923a9888b
commit 6e15319728

View file

@ -1677,6 +1677,8 @@ def workflow_config(
]
# Skipping downgrade tests on windows. These tests have never
# been run and currently fail. This should be fixed.
if platform == "windows":
continue
pkg_test_matrix[platform] += [
dict(
{
@ -1685,7 +1687,7 @@ def workflow_config(
},
**_.as_dict(),
)
for _ in TEST_SALT_PKG_LISTING[platform] if _ != "windows"
for _ in TEST_SALT_PKG_LISTING[platform]
]
ctx.info(f"{'==== pkg test matrix ====':^80s}")
ctx.info(f"{pprint.pformat(pkg_test_matrix)}")