mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
Fix windows download pkg skip logic
This commit is contained in:
parent
4923a9888b
commit
6e15319728
1 changed files with 3 additions and 1 deletions
|
@ -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)}")
|
||||
|
|
Loading…
Add table
Reference in a new issue