We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e7d7d9 + 2d18dfd commit d4bf359Copy full SHA for d4bf359
src/scippneutron/__init__.py
@@ -23,7 +23,17 @@
23
24
import lazy_loader as lazy
25
26
-submodules = ['atomschopper', 'io', 'conversion']
+submodules = [
27
+ 'absorption',
28
+ 'atoms',
29
+ 'chopper',
30
+ 'io',
31
+ 'conversion',
32
+ 'data',
33
+ 'metadata',
34
+ 'peaks',
35
+ 'tof',
36
+]
37
38
__getattr__, __dir__, __all__ = lazy.attach(
39
__name__,
tests/io/sqw/sqw_horace_test.py
@@ -34,6 +34,8 @@ def matlab() -> Any:
except RuntimeError as e:
if "No supported MATLAB" in e.args[0]:
pytest.skip("MATLAB is unavailable")
+ else:
+ raise
40
41
@pytest.fixture
0 commit comments