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 7daaeb1 commit 5abf9f1Copy full SHA for 5abf9f1
.github/workflows/ci_tests_run_notebooks.yml
@@ -46,4 +46,8 @@ jobs:
46
run: python -m pip install --upgrade tox
47
48
- name: Test with tox
49
- run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
+ run: |
50
+ # Workaround for OSX for https://jira.ipac.caltech.edu/browse/FIREFLY-1528
51
+ bash -c 'if echo ${{ runner.os }} | grep -i macos; then echo tutorials/firefly >> ignore_testing; fi'
52
+
53
+ tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
0 commit comments