Skip to content

Commit 8bfb3c9

Browse files
committed
fix: test condition to disable query compiler tests in ci
1 parent 698fb27 commit 8bfb3c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

glint/src/test/java/co/clflushopt/glint/query/compiler/QueryCompilerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class QueryCompilerTest {
1515
@Test
1616
public void canCompileInlinedParquetScan() throws Exception {
1717
Assume.assumeTrue("Skipping test due to missing data",
18-
System.getenv("DISABLE_COMPILER_TESTS") != null);
18+
System.getenv("DISABLE_COMPILER_TESTS") == null);
1919

2020
Path path = Path.of("../datasets/yellow_tripdata_2019-01.parquet");
2121
String filename = path.toAbsolutePath().toString();
@@ -27,7 +27,7 @@ public void canCompileInlinedParquetScan() throws Exception {
2727
@Test
2828
public void canCompileScanPlan() throws Exception {
2929
Assume.assumeTrue("Skipping test due to missing data",
30-
System.getenv("DISABLE_COMPILER_TESTS") != null);
30+
System.getenv("DISABLE_COMPILER_TESTS") == null);
3131
try {
3232
Path path = Path.of("../datasets/yellow_tripdata_2019-01.parquet");
3333
String filename = path.toAbsolutePath().toString();

0 commit comments

Comments
 (0)