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:
Daniel A. Wozniak 2024-08-06 17:05:58 -07:00
parent f2b4410681
commit 9d123b949e
2 changed files with 8 additions and 0 deletions

View file

@ -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",
),
]

View file

@ -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",
),
]