Skip to content

Commit

Permalink
fix: test condition to disable query compiler tests in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
clflushopt committed Feb 3, 2025
1 parent 698fb27 commit 8bfb3c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class QueryCompilerTest {
@Test
public void canCompileInlinedParquetScan() throws Exception {
Assume.assumeTrue("Skipping test due to missing data",
System.getenv("DISABLE_COMPILER_TESTS") != null);
System.getenv("DISABLE_COMPILER_TESTS") == null);

Path path = Path.of("../datasets/yellow_tripdata_2019-01.parquet");
String filename = path.toAbsolutePath().toString();
Expand All @@ -27,7 +27,7 @@ public void canCompileInlinedParquetScan() throws Exception {
@Test
public void canCompileScanPlan() throws Exception {
Assume.assumeTrue("Skipping test due to missing data",
System.getenv("DISABLE_COMPILER_TESTS") != null);
System.getenv("DISABLE_COMPILER_TESTS") == null);
try {
Path path = Path.of("../datasets/yellow_tripdata_2019-01.parquet");
String filename = path.toAbsolutePath().toString();
Expand Down

0 comments on commit 8bfb3c9

Please sign in to comment.