File tree Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -145,13 +145,14 @@ dmypy.json
145145# Cython debug symbols
146146cython_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
156153output /
157- .vscode /
154+
155+ # MacOS files
156+ .DS_Store
157+
158+
Original file line number Diff line number Diff line change 1- import os
2-
31import pytest
42from 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
You can’t perform that action at this time.
0 commit comments