From a1bf32c8814eed0514a730be68234d351867995f Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Sun, 26 Nov 2023 11:12:51 +0000 Subject: [PATCH] Skip performance tests on PhotonOS. They were also getting skipped previously. Signed-off-by: Pedro Algarvio --- tests/pytests/scenarios/performance/test_performance.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/pytests/scenarios/performance/test_performance.py b/tests/pytests/scenarios/performance/test_performance.py index 12749a6afd8..e9e0d0def65 100644 --- a/tests/pytests/scenarios/performance/test_performance.py +++ b/tests/pytests/scenarios/performance/test_performance.py @@ -14,6 +14,7 @@ from tests.conftest import CODE_DIR log = logging.getLogger(__name__) pytestmark = [ + pytest.mark.skip_on_photonos, pytest.mark.skip_if_binaries_missing("docker"), ]