Skip to content

Commit 062c9ed

Browse files
committed
fix: mock up equinox
1 parent 11c473b commit 062c9ed

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

tests/galsim_test_helpers.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@
1616
# and/or other materials provided with the distribution.
1717
#
1818

19-
import equinox
19+
try:
20+
import equinox
21+
except ImportError:
22+
class equinox():
23+
EquinoxRuntimeError = RuntimeError
24+
2025
import pytest
2126
import numpy as np
2227
import galsim

0 commit comments

Comments
 (0)