File tree 1 file changed +16
-28
lines changed
1 file changed +16
-28
lines changed Original file line number Diff line number Diff line change @@ -22,25 +22,25 @@ jobs:
22
22
strategy :
23
23
matrix :
24
24
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
29
29
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
34
34
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
39
39
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
44
44
45
45
# - name: Python 3.7 with oldest supported version of all dependencies
46
46
# os: ubuntu-16.04
69
69
sudo apt-get install graphviz texlive-latex-extra dvipng libopenmpi-dev openmpi-bin pandoc
70
70
fi
71
71
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'
82
72
- name : Set up python ${{ matrix.python }} on ${{ matrix.os }}
83
73
uses : actions/setup-python@v2
84
74
with :
90
80
- name : Test with tox
91
81
run : |
92
82
tox -e ${{ matrix.toxenv }}
93
- env :
94
- NUMBA_DISABLE_JIT="${{ runner.os == 'Linux' && '0' || '1' }}"
95
83
- name : MPI test
96
84
if : contains(matrix.toxenv, 'alldeps')
97
85
run : |
You can’t perform that action at this time.
0 commit comments