Skip to content

Commit

Permalink
Skip test_performance in Github
Browse files Browse the repository at this point in the history
  • Loading branch information
m-czernek committed Sep 24, 2024
1 parent ad78167 commit dc7f9fb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/pytests/scenarios/performance/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@

from salt.version import SaltVersionsInfo, __version__

pytestmark = [pytest.mark.skip_if_binaries_missing("docker")]
pytestmark = [
pytest.mark.skip_if_binaries_missing("docker"),
pytest.mark.skipif(
os.environ.get("GITHUB_ACTIONS", "") == "true",
reason="Cannot spawn containers in GH actions run",
),
]


class ContainerMaster(SaltDaemon, master.SaltMaster):
Expand Down

0 comments on commit dc7f9fb

Please sign in to comment.