Skip to content

Commit f741417

Browse files
authored
reduced number of skiped geoms (#63)
1 parent a4cc2cd commit f741417

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

tests/test_volumes.py

+2-13
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,9 @@
3131

3232
path_to_cad = Path("testing/inputSTEP")
3333
step_files = list(path_to_cad.rglob("*.stp")) + list(path_to_cad.rglob("*.step"))
34-
35-
# this checks if the tests are being run a github action runner or not
34+
step_files.remove(Path('testing/inputSTEP/Misc/rails.stp'))
35+
# # this checks if the tests are being run a github action runner or not
3636
if os.getenv("GITHUB_ACTIONS"):
37-
# removing the larger models and models where the volumes don't match from
38-
# some of these step file are removed as it fails the volume tests.
39-
# Perhaps a bug with torus conversion or a bug with the stp file?
40-
# Issue raised https://github.com/GEOUNED-org/GEOUNED/issues/55
41-
step_files.remove(Path('testing/inputSTEP/Misc/rails.stp'))
42-
step_files.remove(Path('testing/inputSTEP/placa.stp'))
43-
step_files.remove(Path('testing/inputSTEP/Misc/tester.stp'))
44-
step_files.remove(Path('testing/inputSTEP/large/SCDR.stp'))
45-
step_files.remove(Path('testing/inputSTEP/large/Triangle.stp'))
46-
step_files.remove(Path('testing/inputSTEP/Torus/face2.stp'))
47-
step_files.remove(Path('testing/inputSTEP/Torus/rueda.stp'))
4837
# reduced samples as github action runners have 2 threads and more samples
4938
# is not needed for the smaller models tested. This allows the CI to
5039
# quickly test the smaller models

0 commit comments

Comments
 (0)