@@ -88,8 +88,9 @@ public void testReadFromZarrita(String codec) throws IOException, ZarrException,
88
88
}
89
89
90
90
//TODO: add crc32c
91
+ //Disabled "zstd": known issue
91
92
@ ParameterizedTest
92
- @ ValueSource (strings = {"blosc" , "gzip" , "zstd" , " bytes" , "transpose" , "sharding" })
93
+ @ ValueSource (strings = {"blosc" , "gzip" , "bytes" , "transpose" , "sharding" })
93
94
public void testWriteToZarrita (String codec ) throws IOException , ZarrException , InterruptedException {
94
95
StoreHandle storeHandle = new FilesystemStore (TESTOUTPUT ).resolve ("write_to_zarrita" , codec );
95
96
ArrayMetadataBuilder builder = Array .metadataBuilder ()
@@ -130,7 +131,7 @@ public void testWriteToZarrita(String codec) throws IOException, ZarrException,
130
131
Arrays .setAll (data , p -> p );
131
132
array .write (ucar .ma2 .Array .factory (ucar .ma2 .DataType .UINT , new int []{16 , 16 }, data ));
132
133
133
- String command = "zarrita /bin/python" ;
134
+ String command = "venv_zarrita /bin/python" ;
134
135
135
136
ProcessBuilder pb = new ProcessBuilder (command , ZARRITA_READ_PATH .toString (), codec , TESTOUTPUT .toString ());
136
137
Process process = pb .start ();
@@ -306,7 +307,7 @@ public void testV3Access() throws IOException, ZarrException {
306
307
writeArray .access ().withOffset (0 , 3073 , 3073 , 513 ).write (outArray );
307
308
}
308
309
309
-
310
+ @ Disabled ( "not implemented yet" )
310
311
@ ParameterizedTest
311
312
@ ValueSource (strings = {"start" , "end" })
312
313
public void testV3ShardingReadWrite (String indexLocation ) throws IOException , ZarrException {
0 commit comments