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 25174bb commit 5eeb572Copy full SHA for 5eeb572
_unittest/conftest.py
@@ -185,16 +185,10 @@ def setup(self):
185
186
@pytest.fixture(scope="session", autouse=True)
187
def desktop_init():
188
- # desktop = Desktop(desktop_version, non_graphical, new_thread)
189
- # desktop.disable_autosave()
190
- # yield desktop
+
191
yield
192
- # If new_thread is set to false by a local_config, then don't close the desktop.
193
- # Intended for local debugging purposes only
194
- # if new_thread or os.name == "posix":
195
- # desktop.close_desktop()
196
p = [x[0] for x in os.walk(scratch_path) if "scratch" in x[0]]
197
- # p = pathlib.Path(scratch_path).glob('**/scratch*')
198
for folder in p:
199
shutil.rmtree(folder, ignore_errors=True)
200
0 commit comments