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 e979590 commit 0c14952
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,16 @@


class WorkflowTest(TestAutoData):
TMP_PATH = Path("./.mlruns_tmp/")
TMP_PATH = Path("./.mlruns_tmp/.trash")

def tearDown(self) -> None:
if self.TMP_PATH.exists():
shutil.rmtree(self.TMP_PATH)

def test_get_local_dir(self):
""" """
folder_path = Path("./.mlruns_tmp/.trash")
folder_path.mkdir(parents=True, exist_ok=True)
print(self.TMP_PATH.resolve())
self.TMP_PATH.mkdir(parents=True, exist_ok=True)

with R.start(uri=str(self.TMP_PATH)):
pass

Expand Down

0 comments on commit 0c14952

Please sign in to comment.