Skip to content

Commit 5abf9f1

Browse files
committed
CI: ignore osx testing for the firefly notebooks due to upstream issue
1 parent 7daaeb1 commit 5abf9f1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci_tests_run_notebooks.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,8 @@ jobs:
4646
run: python -m pip install --upgrade tox
4747

4848
- name: Test with tox
49-
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
49+
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

Comments
 (0)