Skip to content

Commit 2d18dfd

Browse files
committed
Re-raise on generic matlab error
1 parent 600891b commit 2d18dfd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/io/sqw/sqw_horace_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ def matlab() -> Any:
3434
except RuntimeError as e:
3535
if "No supported MATLAB" in e.args[0]:
3636
pytest.skip("MATLAB is unavailable")
37+
else:
38+
raise
3739

3840

3941
@pytest.fixture

0 commit comments

Comments
 (0)