From 736e04585e775352b3c7fd86a55cb07becd67cd7 Mon Sep 17 00:00:00 2001 From: Barney Sowood Date: Sat, 11 Jan 2025 00:16:50 +0000 Subject: [PATCH] Attempt to run simple test of skipping --- noxfile.py | 9 ++++----- tests/pytests/ci_issues/test_darwin_skip.py | 6 ++++++ 2 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 tests/pytests/ci_issues/test_darwin_skip.py diff --git a/noxfile.py b/noxfile.py index 3d39c743877..338684323bc 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1064,17 +1064,16 @@ def _ci_test(session, transport, onedir=False): env["ONEDIR_TESTRUN"] = "1" chunks = { "pkg": [ - "tests/pytests/pkg", + "tests/pytests/ci_issues", ], "unit": [ - "tests/unit", - "tests/pytests/unit", + "tests/pytests/ci_issues", ], "functional": [ - "tests/pytests/functional", + "tests/pytests/ci_issues", ], "scenarios": [ - "tests/pytests/scenarios", + "tests/pytests/ci_issues", ], } diff --git a/tests/pytests/ci_issues/test_darwin_skip.py b/tests/pytests/ci_issues/test_darwin_skip.py new file mode 100644 index 00000000000..6500bf1c53b --- /dev/null +++ b/tests/pytests/ci_issues/test_darwin_skip.py @@ -0,0 +1,6 @@ +import pytest + + +@pytest.mark.skip_on_darwin +def test_one(): + assert True