Skip to content

Commit 6fb3374

Browse files
committed
remove shaky GNU Octave test
1 parent 5f10836 commit 6fb3374

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/tests/test_shape.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@
4141
raise ValueError(f"h5py: expected {c_order} but got {f[var].shape}")
4242
print("OK: Python h5py")
4343

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-
5044
if shutil.which("matlab"):
5145
cmd = f"i=h5info('{fn}', '{var}'); smat = i.Dataspace.Size; assert(all(smat == {list(f_order)}), 'expected {f_order}')"
5246
subprocess.check_call(["matlab", "-batch", cmd])

0 commit comments

Comments
 (0)