Skip to content

Commit 4dba308

Browse files
committed
Skip containers test in CI
Until we can get #174 merged.
1 parent 8ab55f5 commit 4dba308

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ jobs:
3333
- name: install deps
3434
run: pip install .[testing]
3535
- run: |
36-
riot run -p ${{ matrix.python-version}} test
36+
riot run -p --pass-env ${{ matrix.python-version}} test

tests/test_container.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313

1414
pytestmark = pytest.mark.skipif(os.getenv("SKIP_CONTAINER") is not None, reason="SKIP_CONTAINER set")
15+
pytestmark = pytest.mark.skipif(
16+
platform.system() == "Darwin" and os.getenv("GITHUB_ACTIONS") is not None,
17+
reason="Github actions doesn't support docker",
18+
)
1519

1620

1721
class DockerContainer:

0 commit comments

Comments
 (0)