File tree 1 file changed +2
-13
lines changed
1 file changed +2
-13
lines changed Original file line number Diff line number Diff line change 31
31
32
32
path_to_cad = Path ("testing/inputSTEP" )
33
33
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
36
36
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' ))
48
37
# reduced samples as github action runners have 2 threads and more samples
49
38
# is not needed for the smaller models tested. This allows the CI to
50
39
# quickly test the smaller models
You can’t perform that action at this time.
0 commit comments