@@ -25,19 +25,32 @@ jobs:
2525 python-version : ${{ matrix.python-version }}
2626
2727 - name : Setup conda
28- uses : s-weigand/setup-conda@v1
28+ uses : s-weigand/setup-conda@v1.1.1
2929 with :
3030 update-conda : true
3131 python-version : ${{ matrix.python-version }}
3232 conda-channels : anaconda, conda-forge
3333
34- - name : Install Python dependencies
34+ - name : Install Python dependencies on Linux/MacOS
35+ if : startsWith(matrix.os, 'windows') != true
3536 run : |
36- conda install --yes pythonocc-core=7.4.0
37+ conda install --yes pythonocc-core=7.4.1
3738 python3 -m pip install --upgrade pip
3839 python3 -m pip install smithers[vtk]
3940 python3 -m pip install .[test]
40-
41- - name : Test with pytest
41+
42+ - name : Install Python dependencies on Windows
43+ if : startsWith(matrix.os, 'windows')
4244 run : |
43- python3 -m pytest
45+ conda install --yes pythonocc-core=7.4.1
46+ python -m pip install --upgrade pip
47+ python -m pip install smithers[vtk]
48+ python -m pip install .[test]
49+
50+ - name : Test with pytest on Windows
51+ if : startsWith(matrix.os, 'windows')
52+ run : python -m pytest
53+
54+ - name : Test with pytest on Linux/MacOS
55+ if : startsWith(matrix.os, 'windows') != true
56+ run : python3 -m pytest
0 commit comments