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 5eff578 commit a1e8d77Copy full SHA for a1e8d77
runtests.py
@@ -43,7 +43,10 @@ def run_bench(*cmd):
43
44
egg_info = "pyperformance.egg-info"
45
print("Remove directory %s" % egg_info)
46
- shutil.rmtree(egg_info)
+ try:
47
+ shutil.rmtree(egg_info)
48
+ except FileNotFoundError:
49
+ pass
50
51
run_bench(python, script, 'venv')
52
setup.py
@@ -22,6 +22,8 @@
22
# - git push
23
# - check Travis CI status:
24
# https://travis-ci.org/python/pyperformance
25
+# - check AppVeyor status:
26
+# https://ci.appveyor.com/project/lazka/pyperformance-rdqv8
27
#
28
# Release a new version:
29
0 commit comments