Skip to content

Commit

Permalink
test fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
Linlang committed Mar 6, 2024
1 parent 4023277 commit e979590
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ def tearDown(self) -> None:

def test_get_local_dir(self):
""" """
self.TMP_PATH.mkdir()
folder_path = Path("./.mlruns_tmp/.trash")
folder_path.mkdir(parents=True, exist_ok=True)
print(self.TMP_PATH.resolve())
with R.start(uri=str(self.TMP_PATH)):
pass
Expand Down

0 comments on commit e979590

Please sign in to comment.