From c6ce3e59485f9422993aa2ed5987afb8ce8255ec Mon Sep 17 00:00:00 2001 From: Agisilaos Kounelis <36283973+kounelisagis@users.noreply.github.com> Date: Fri, 11 Oct 2024 02:52:18 +0300 Subject: [PATCH] Fix skipif condition for test_cloud (#2084) --- tiledb/tests/test_cloud.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tiledb/tests/test_cloud.py b/tiledb/tests/test_cloud.py index c09795556c..8b75d0d833 100644 --- a/tiledb/tests/test_cloud.py +++ b/tiledb/tests/test_cloud.py @@ -15,7 +15,10 @@ @pytest.mark.skipif( - not os.getenv("CI") and tiledb_token is None, + os.getenv("CI") == None + or tiledb_token == None + or tiledb_namespace == None + or s3_bucket == None, reason="No token was provided in a non-CI environment. Please set the TILEDB_TOKEN environment variable to run this test.", ) class CloudTest(DiskTestCase):