Skip to content

Commit a85682b

Browse files
committed
add default availability
1 parent 7821f3f commit a85682b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_validate.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ class StrEnum(str, Enum):
7878
## If we specifically disable tests in pytest set the availability to False
7979
if os.environ.get("SKIP_PYSPARK_TESTS", "").lower() in ("true", "1", "yes"):
8080
PYSPARK_AVAILABLE = False
81+
SQLITE_AVAILABLE = True
8182
if os.environ.get("SKIP_SQLITE_TESTS", "").lower() in ("true", "1", "yes"):
8283
SQLITE_AVAILABLE = False
84+
PARQUET_AVAILABLE = True
8385
if os.environ.get("SKIP_PARQUET_TESTS", "").lower() in ("true", "1", "yes"):
8486
PARQUET_AVAILABLE = False
8587

0 commit comments

Comments
 (0)