Skip to content

Commit

Permalink
Use absolute file path in conftest
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdabbas committed Oct 30, 2023
1 parent 2d25981 commit 4b9ec11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@pytest.fixture(scope="module")
def crawl_dir():
with TemporaryDirectory() as temp_dir:
return Path(temp_dir)
return Path(temp_dir).absolute()


@pytest.fixture(scope="module")
Expand Down

0 comments on commit 4b9ec11

Please sign in to comment.