We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ab55f5 commit 4dba308Copy full SHA for 4dba308
.github/workflows/main.yml
@@ -33,4 +33,4 @@ jobs:
33
- name: install deps
34
run: pip install .[testing]
35
- run: |
36
- riot run -p ${{ matrix.python-version}} test
+ riot run -p --pass-env ${{ matrix.python-version}} test
tests/test_container.py
@@ -12,6 +12,10 @@
12
13
14
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
+)
19
20
21
class DockerContainer:
0 commit comments