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.
1 parent 5f10836 commit 6fb3374Copy full SHA for 6fb3374
src/tests/test_shape.py
@@ -41,12 +41,6 @@
41
raise ValueError(f"h5py: expected {c_order} but got {f[var].shape}")
42
print("OK: Python h5py")
43
44
-if shutil.which("octave-cli"):
45
- cmd = f"dat=load('{fn}'); soct = size(dat.{var[1:]}); assert(all(soct == {list(f_order)}), 'expected {f_order}')"
46
- print(cmd)
47
- subprocess.check_call(["octave-cli", "--eval", cmd])
48
- print("OK: GNU Octave")
49
-
50
if shutil.which("matlab"):
51
cmd = f"i=h5info('{fn}', '{var}'); smat = i.Dataspace.Size; assert(all(smat == {list(f_order)}), 'expected {f_order}')"
52
subprocess.check_call(["matlab", "-batch", cmd])
0 commit comments