Skip to content

Commit

Permalink
cli clean tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ischlo committed Dec 17, 2024
1 parent 9263fa8 commit 9572ded
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_rast_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@

from pandas import DataFrame

from scalenav.rast_converter import rast_converter, rast_convert_core, check_nodata, check_crs, check_path
from scalenav.rast_convert_par import process
from scalenav.rast_converter import rast_convert_core, check_nodata, check_crs, check_path



Expand Down Expand Up @@ -82,7 +83,7 @@ def rast_ingest(tmp_path_factory: pytest.TempPathFactory):
for i,file in enumerate(files):
in_file = "data" / file
out_file = tmp_path_factory+f"/test_data_{i}.parquet"
rast_converter(in_path=in_file,out_path=out_file)
process(src_file=in_file,out_file=out_file)

# sample_file = f"../../data/test_data_{i}.parquet"

Expand Down

0 comments on commit 9572ded

Please sign in to comment.