@@ -25,19 +25,32 @@ jobs:
25
25
python-version : ${{ matrix.python-version }}
26
26
27
27
- name : Setup conda
28
- uses : s-weigand/setup-conda@v1
28
+ uses : s-weigand/setup-conda@v1.1.1
29
29
with :
30
30
update-conda : true
31
31
python-version : ${{ matrix.python-version }}
32
32
conda-channels : anaconda, conda-forge
33
33
34
- - name : Install Python dependencies
34
+ - name : Install Python dependencies on Linux/MacOS
35
+ if : startsWith(matrix.os, 'windows') != true
35
36
run : |
36
- conda install --yes pythonocc-core=7.4.0
37
+ conda install --yes pythonocc-core=7.4.1
37
38
python3 -m pip install --upgrade pip
38
39
python3 -m pip install smithers[vtk]
39
40
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')
42
44
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