File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,11 +56,11 @@ def data_dir(tmpdir_factory):
56
56
if platform .system () == "Windows" :
57
57
with tempfile .TemporaryDirectory () as tmp :
58
58
yield tmp
59
- # shutil.rmtree(tmp, ignore_errors=True)
59
+ shutil .rmtree (tmp , ignore_errors = True )
60
60
else :
61
61
data = tmpdir_factory .mktemp ("ArduinoTest" )
62
62
yield str (data )
63
- # shutil.rmtree(data, ignore_errors=True)
63
+ shutil .rmtree (data , ignore_errors = True )
64
64
65
65
66
66
@pytest .fixture (scope = "session" )
@@ -81,7 +81,7 @@ def downloads_dir(tmpdir_factory, worker_id):
81
81
lock .touch ()
82
82
83
83
yield str (download_dir )
84
- # shutil.rmtree(download_dir, ignore_errors=True)
84
+ shutil .rmtree (download_dir , ignore_errors = True )
85
85
86
86
87
87
@pytest .fixture (scope = "function" )
@@ -93,7 +93,7 @@ def working_dir(tmpdir_factory):
93
93
"""
94
94
work_dir = tmpdir_factory .mktemp ("ArduinoTestWork" )
95
95
yield str (work_dir )
96
- # shutil.rmtree(work_dir, ignore_errors=True)
96
+ shutil .rmtree (work_dir , ignore_errors = True )
97
97
98
98
99
99
@pytest .fixture (scope = "function" )
You can’t perform that action at this time.
0 commit comments