File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ def test_supports(self):
19
19
20
20
self .assertTrue (vfs .supports ("file" ))
21
21
self .assertIsInstance (vfs .supports ("s3" ), bool )
22
+ self .assertIsInstance (vfs .supports ("hdfs" ), bool )
22
23
self .assertIsInstance (vfs .supports ("gcs" ), bool )
23
24
self .assertIsInstance (vfs .supports ("azure" ), bool )
24
- if tiledb .libtiledb .version () < (2 , 28 , 0 ):
25
- self .assertIsInstance (vfs .supports ("hdfs" ), bool )
25
+
26
+ # Supports is not raising an error for invalid VFS as it used to
27
+ if tiledb .version () <= (0 , 33 , 6 ):
26
28
with self .assertRaises (ValueError ):
27
29
vfs .supports ("invalid" )
28
30
else :
29
- # HDFS support is not available in TileDB 2.28.0 and later
30
- # Also, supports is not raising an error for invalid VFS as it used to
31
31
self .assertFalse (vfs .supports ("invalid" ))
32
32
33
33
def test_vfs_config (self ):
You can’t perform that action at this time.
0 commit comments