Skip to content

Commit 2dbaebc

Browse files
committed
ci: giving up, disabling test on Mac OS
1 parent 8d6c942 commit 2dbaebc

File tree

1 file changed

+16
-28
lines changed

1 file changed

+16
-28
lines changed

.github/workflows/ci_tests.yml

+16-28
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,25 @@ jobs:
2222
strategy:
2323
matrix:
2424
include:
25-
# - name: Code style checks
26-
# os: ubuntu-latest
27-
# python: 3.x
28-
# toxenv: codestyle
25+
- name: Code style checks
26+
os: ubuntu-latest
27+
python: 3.x
28+
toxenv: codestyle
2929

30-
# - name: Python 3.7 with minimal dependencies
31-
# os: ubuntu-latest
32-
# python: 3.7
33-
# toxenv: py37-test
30+
- name: Python 3.7 with minimal dependencies
31+
os: ubuntu-latest
32+
python: 3.7
33+
toxenv: py37-test
3434

35-
# - name: Python 3.8 with all optional dependencies and coverage checking
36-
# os: ubuntu-latest
37-
# python: 3.8
38-
# toxenv: py38-test-alldeps-cov
35+
- name: Python 3.8 with all optional dependencies and coverage checking
36+
os: ubuntu-latest
37+
python: 3.8
38+
toxenv: py38-test-alldeps-cov
3939

40-
- name: OS X - Python 3.8
41-
os: macos-10.15
42-
python: 3.8
43-
toxenv: py38-test
40+
# - name: OS X - Python 3.8
41+
# os: macos-10.15
42+
# python: 3.8
43+
# toxenv: py38-test
4444

4545
# - name: Python 3.7 with oldest supported version of all dependencies
4646
# os: ubuntu-16.04
@@ -69,16 +69,6 @@ jobs:
6969
sudo apt-get install graphviz texlive-latex-extra dvipng libopenmpi-dev openmpi-bin pandoc
7070
fi
7171
shell: bash
72-
- name: Install required system packages
73-
run: |
74-
if [ "$RUNNER_OS" == "MacOS" ]; then
75-
export NUMBA_DISABLE_JIT=1
76-
fi
77-
shell: bash
78-
- name: Disable Numba for Mac OS
79-
run: |
80-
echo "NUMBA_DISABLE_JIT=1" >> $GITHUB_ENV
81-
if: runner.os == 'macOS'
8272
- name: Set up python ${{ matrix.python }} on ${{ matrix.os }}
8373
uses: actions/setup-python@v2
8474
with:
@@ -90,8 +80,6 @@ jobs:
9080
- name: Test with tox
9181
run: |
9282
tox -e ${{ matrix.toxenv }}
93-
env:
94-
NUMBA_DISABLE_JIT="${{ runner.os == 'Linux' && '0' || '1' }}"
9583
- name: MPI test
9684
if: contains(matrix.toxenv, 'alldeps')
9785
run: |

0 commit comments

Comments
 (0)