Skip to content

Commit

Permalink
skip potentially segfaulting tests on GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
BradyAJohnston committed Apr 6, 2024
1 parent ecbb124 commit 303bcfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_star.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
try:
import pyopenvdb
SKIP = False
else:
except ImportError:
SKIP = True


Expand Down Expand Up @@ -84,7 +84,7 @@ def test_micrograph_loading():
assert ensemble.star_node.inputs['Micrograph'].default_value.name == 'montage.tiff'


@pytest.mark.skipif(SKIP)
@pytest.mark.skipif(SKIP, reason='Test may segfault on GHA')
def test_rehydration(tmp_path):
import bpy
bpy.ops.wm.read_homefile()
Expand Down

0 comments on commit 303bcfd

Please sign in to comment.