[pypy-commit] buildbot default: not needed, virtualenv is deleted by "hg purge"

mattip pypy.commits at gmail.com
Fri Nov 24 06:50:51 EST 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r1042:0a18cb374a4e
Date: 2017-11-24 13:49 +0200
http://bitbucket.org/pypy/buildbot/changeset/0a18cb374a4e/

Log:	not needed, virtualenv is deleted by "hg purge"

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -563,14 +563,8 @@
 
         if platform == 'win32':
             self.virt_python = r'virt_test\Scripts\python.exe'
-            clean = 'rmdir /s /q virt-test'
         else:
             self.virt_python = 'virt_test/bin/python'
-            clean = 'rm -rf virt-test'
-        self.addStep(ShellCmd(
-            description="clean old virtualenv",
-            command=clean,
-            haltOnFailure=False))
         self.addStep(ShellCmd(
             description="create virtualenv for tests",
             command=['virtualenv', 'virt_test'],


More information about the pypy-commit mailing list