Skip to content

Commit

Permalink
Ignore cleanup errors for temp directories
Browse files Browse the repository at this point in the history
We don't really care about the details of why this isn't working I don't think. Our runner is ephemeral so who cares if something goes weird with the test cleanup?
  • Loading branch information
Jacob Campbell committed May 10, 2024
1 parent 0df6c78 commit d749102
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 @@ -8,7 +8,7 @@

@pytest.fixture()
def tmpdir():
with tempfile.TemporaryDirectory() as d:
with tempfile.TemporaryDirectory(ignore_cleanup_errors=True) as d:
yield Path(d)


Expand Down

0 comments on commit d749102

Please sign in to comment.