Skip to content

Commit 29bf5af

Browse files
committed
Fix some build issues
1 parent 6fc17f2 commit 29bf5af

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/model-view-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install flake8 pytest numpy coverage pygame matplotlib
26+
pip install flake8 pytest numpy coverage pygame matplotlib scipy
2727
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2828
- name: Lint with flake8
2929
run: |

test_modules/test_actions.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
2+
import scipy
33
import mesh_model.mesh_struct.mesh as mesh
44
from mesh_model.mesh_analysis.trimesh_analysis import TriMeshQualityAnalysis
55
from mesh_model.mesh_struct.mesh_elements import Dart, Node
@@ -123,4 +123,5 @@ def test_split_collapse_split(self):
123123
collapse_edge(m_analysis, n5, n7)
124124

125125

126-
126+
if __name__ == '__main__':
127+
unittest.main()

test_modules/test_actions_quad.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,5 @@ def test_simple_mesh(self):
254254
self.assertEqual(ma.global_score()[1], 0)
255255

256256

257-
257+
if __name__ == '__main__':
258+
unittest.main()

0 commit comments

Comments
 (0)