Skip to content

Commit ec9cd08

Browse files
Address comments
1 parent 668cf96 commit ec9cd08

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.dockerignore

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,14 @@ dmypy.json
145145
# Cython debug symbols
146146
cython_debug/
147147

148-
# PyCharm
149-
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
150-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
151-
# and can be added to the global gitignore or merged into this file. For a more nuclear
152-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
153-
#.idea/
148+
# IDEs
149+
.idea/
150+
.vscode/
154151

155-
.DS_Store
152+
# Local directories
156153
output/
157-
.vscode/
154+
155+
# MacOS files
156+
.DS_Store
157+
158+

tests/conftest.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import os
2-
31
import pytest
42
from click.testing import CliRunner
53

64

75
@pytest.fixture(autouse=True)
8-
def _test_env():
9-
os.environ["SENTRY_DSN"] = "None"
10-
os.environ["WORKSPACE"] = "test"
6+
def _test_env(monkeypatch):
7+
monkeypatch.setenv("SENTRY_DSN", "None")
8+
monkeypatch.setenv("WORKSPACE", "test")
119

1210

1311
@pytest.fixture

0 commit comments

Comments
 (0)