We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a64cc9 commit 6f2c9ecCopy full SHA for 6f2c9ec
src/sentry/testutils/pytest/sentry.py
@@ -45,6 +45,10 @@ def pytest_configure(config):
45
# the temproot. We'd like to keep invocations to just "pytest".
46
# See source code for pytest's TempPathFactory.
47
os.environ.setdefault("PYTEST_DEBUG_TEMPROOT", "/private/tmp/colima")
48
+ try:
49
+ os.mkdir("/private/tmp/colima")
50
+ except FileExistsError:
51
+ pass
52
53
# HACK: Only needed for testing!
54
os.environ.setdefault("_SENTRY_SKIP_CONFIGURATION", "1")
0 commit comments