File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,11 @@ function pyReloadInProcess()
47
47
% this call. For Out-of-Process Python, can just use
48
48
% `terminate(pyenv)` instead.
49
49
50
- py .importlib .reload(Zarr .ZarrPy );
50
+ % make sure the python module is on the path
51
+ Zarr .pySetup()
52
+
53
+ % reload
54
+ py .importlib .reload(Zarr .ZarrPy );
51
55
end
52
56
53
57
function isZarray = isZarrArray(path )
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ function verifySupportedCloudPatterns(testcase)
29
29
function verifyReload(testcase )
30
30
% Verify that calling reload method does not cause any issues
31
31
32
- Zarr .pyReloadInProcess();
32
+ Zarr .pyReloadInProcess()
33
33
zarrPyModule = Zarr .ZarrPy ;
34
34
testcase .verifyTrue(isa(zarrPyModule , ' py.module' ))
35
35
You can’t perform that action at this time.
0 commit comments