Temporarily skip some tests on Rocky Linux 8 Arm64

This commit is contained in:
Pedro Algarvio 2024-04-02 18:14:38 +01:00
parent 28814b9eab
commit 2d578e8ed0
5 changed files with 20 additions and 0 deletions

View file

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

View file

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

View file

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

View file

@ -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

View file

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