Skip to content

Commit

Permalink
Attempt to run simple test of skipping
Browse files Browse the repository at this point in the history
  • Loading branch information
barneysowood committed Jan 11, 2025
1 parent 3a312c1 commit 736e045
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
9 changes: 4 additions & 5 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
}

Expand Down
6 changes: 6 additions & 0 deletions tests/pytests/ci_issues/test_darwin_skip.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import pytest


@pytest.mark.skip_on_darwin
def test_one():
assert True

0 comments on commit 736e045

Please sign in to comment.