diff --git a/noxfile.py b/noxfile.py index 3d39c7438777..338684323bc8 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 000000000000..6500bf1c53b5 --- /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