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 aec741f commit c804c0dCopy full SHA for c804c0d
appveyor.yml
@@ -41,7 +41,7 @@ build_script:
41
42
test_script:
43
- |
44
- %PYTHON%\\python.exe -m coverage run --parallel-mode -m pytest --strict -p no:cacheprovider --junit-xml=tests.xml
+ %PYTHON%\\python.exe -m coverage run --parallel-mode -m pytest --strict -p no:cacheprovider -p no:stepwise --junit-xml=tests.xml
45
- "%PYTHON%\\python.exe -m coverage combine"
46
- "%PYTHON%\\python.exe -m coverage report"
47
- "%PYTHON%\\python.exe -m coverage xml"
tests/util.py
@@ -77,7 +77,7 @@ def temp_dir(suffix=""):
77
c_dir = tempfile.mkdtemp(suffix)
78
try:
79
yield c_dir
80
- except:
+ finally:
81
shutil.rmtree(c_dir)
82
83
@contextlib.contextmanager
0 commit comments