mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
Skip chocolatey tests
These tests are failing because CI/CD is flooding chocolatey's APIs with requests. They need to be refactored to not hit APIs outside of our infrustructure.
This commit is contained in:
parent
f2b4410681
commit
9d123b949e
2 changed files with 8 additions and 0 deletions
|
@ -7,6 +7,10 @@ pytestmark = [
|
|||
pytest.mark.skip_unless_on_windows,
|
||||
pytest.mark.slow_test,
|
||||
pytest.mark.windows_whitelisted,
|
||||
pytest.mark.skipif(
|
||||
True,
|
||||
reason="CI/CD making too many requests to chocolatey and we're getting blocked",
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
|
|
@ -15,6 +15,10 @@ pytestmark = [
|
|||
pytest.mark.skip_unless_on_windows,
|
||||
pytest.mark.slow_test,
|
||||
pytest.mark.destructive_test,
|
||||
pytest.mark.skipif(
|
||||
True,
|
||||
reason="CI/CD making too many requests to chocolatey and we're getting blocked",
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue