mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Temporarily skip some tests on Rocky Linux 8 Arm64
This commit is contained in:
parent
28814b9eab
commit
2d578e8ed0
5 changed files with 20 additions and 0 deletions
|
@ -17,6 +17,10 @@ pytestmark = [
|
|||
pytest.mark.skip_on_spawning_platform(
|
||||
reason="These tests are currently broken on spawning platforms. Need to be rewritten.",
|
||||
),
|
||||
pytest.mark.skipif(
|
||||
"grains['osfinger'] == 'Rocky Linux-8' and grains['osarch'] == 'aarch64'",
|
||||
reason="Temporarily skip on Rocky Linux 8 Arm64",
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
|
|
@ -23,6 +23,10 @@ pytestmark = [
|
|||
reason="These tests are currently broken on spawning platforms. Need to be rewritten.",
|
||||
),
|
||||
pytest.mark.slow_test,
|
||||
pytest.mark.skipif(
|
||||
"grains['osfinger'] == 'Rocky Linux-8' and grains['osarch'] == 'aarch64'",
|
||||
reason="Temporarily skip on Rocky Linux 8 Arm64",
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,10 @@ pytestmark = [
|
|||
pytest.mark.skip_on_spawning_platform(
|
||||
reason="These tests are currently broken on spawning platforms. Need to be rewritten.",
|
||||
),
|
||||
pytest.mark.skipif(
|
||||
"grains['osfinger'] == 'Rocky Linux-8' and grains['osarch'] == 'aarch64'",
|
||||
reason="Temporarily skip on Rocky Linux 8 Arm64",
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
|
|
@ -24,6 +24,10 @@ def process_manager():
|
|||
_process_manager.terminate()
|
||||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
"grains['osfinger'] == 'Rocky Linux-8' and grains['osarch'] == 'aarch64'",
|
||||
reason="Temporarily skip on Rocky Linux 8 Arm64",
|
||||
)
|
||||
def test_process_manager_60749(process_manager):
|
||||
"""
|
||||
Regression test for issue #60749
|
||||
|
|
|
@ -20,6 +20,10 @@ pytestmark = [
|
|||
pytest.mark.skip_if_not_root,
|
||||
pytest.mark.skip_on_windows,
|
||||
pytest.mark.skip_initial_gh_actions_failure(skip=_check_skip),
|
||||
pytest.mark.skipif(
|
||||
"grains['osfinger'] == 'Rocky Linux-8' and grains['osarch'] == 'aarch64'",
|
||||
reason="Temporarily skip on Rocky Linux 8 Arm64",
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue