Skip to content

Commit c6ce3e5

Browse files
authored
Fix skipif condition for test_cloud (#2084)
1 parent 0cd2714 commit c6ce3e5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tiledb/tests/test_cloud.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515

1616

1717
@pytest.mark.skipif(
18-
not os.getenv("CI") and tiledb_token is None,
18+
os.getenv("CI") == None
19+
or tiledb_token == None
20+
or tiledb_namespace == None
21+
or s3_bucket == None,
1922
reason="No token was provided in a non-CI environment. Please set the TILEDB_TOKEN environment variable to run this test.",
2023
)
2124
class CloudTest(DiskTestCase):

0 commit comments

Comments
 (0)