-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add integration test. TODO: confirm expected behavior of the timestam…
…p range and fix issues Signed-off-by: Jun Ki Min <[email protected]>
- Loading branch information
Showing
2 changed files
with
84 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,14 +29,15 @@ def workspace_dir() -> str: | |
return str(Path(__file__).parent.resolve().joinpath("test_user_workspace")) | ||
|
||
|
||
@pytest.fixture | ||
def mock_data_path(workspace_dir): | ||
return str(Path(workspace_dir).joinpath( | ||
"mockdata", | ||
"[email protected]", | ||
"demo_data", | ||
"green_tripdata_2020-04.csv", | ||
)) | ||
# TODO we can use this later | ||
# @pytest.fixture | ||
# def mock_data_path(workspace_dir): | ||
# return str(Path(workspace_dir).joinpath( | ||
# "mockdata", | ||
# "[email protected]", | ||
# "demo_data", | ||
# "green_tripdata_2020-04.csv", | ||
# )) | ||
|
||
|
||
@pytest.fixture(scope="function") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters