Skip to content

Commit

Permalink
Mark skip table path tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rchowell committed Jan 14, 2025
1 parent 7dad9f8 commit de4f76b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/sql/test_table_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def test_sql_read_parquet():
assert df.to_pydict() == expected.to_pydict()


@pytest.mark.skip(reason="Daft SQL does not support table paths (yet)")
def test_sql_read_parquet_path():
df = daft.sql("SELECT * FROM 'tests/assets/parquet-data/mvp.parquet'").collect()
expected = daft.read_parquet("tests/assets/parquet-data/mvp.parquet").collect()
Expand All @@ -31,6 +32,7 @@ def test_sql_read_csv(sample_csv_path):
assert df.to_pydict() == expected.to_pydict()


@pytest.mark.skip(reason="Daft SQL does not support table paths (yet)")
def test_sql_read_csv_path(sample_csv_path):
df = daft.sql(f"SELECT * FROM '{sample_csv_path}'").collect()
expected = daft.read_csv(sample_csv_path).collect()
Expand Down

0 comments on commit de4f76b

Please sign in to comment.