Skip to content

Commit

Permalink
Create subdirectories in data directory
Browse files Browse the repository at this point in the history
  • Loading branch information
sft-managed authored and sft-managed committed Mar 15, 2022
1 parent fd81f73 commit 2d74d42
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/dask_cudf/dask_cudf/io/tests/test_orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# import pyarrow.orc as orc

cur_dir = os.path.dirname(__file__)
sample_orc = os.path.join(cur_dir, "data/sample.orc")
sample_orc = os.path.join(cur_dir, "data/orc/sample.orc")


def test_read_orc_defaults():
Expand Down
2 changes: 1 addition & 1 deletion python/dask_cudf/dask_cudf/io/tests/test_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import dask_cudf

cur_dir = os.path.dirname(__file__)
text_file = os.path.join(cur_dir, "data/sample.pgn")
text_file = os.path.join(cur_dir, "data/text/sample.pgn")


@pytest.mark.parametrize("file", [text_file, [text_file]])
Expand Down

0 comments on commit 2d74d42

Please sign in to comment.