##// END OF EJS Templates
clean build dir in test_pr
MinRK -
Show More
@@ -94,6 +94,9 b' def run_tests(venv):'
94 py = os.path.join(basedir, venv, 'bin', 'python')
94 py = os.path.join(basedir, venv, 'bin', 'python')
95 print(py)
95 print(py)
96 os.chdir(repodir)
96 os.chdir(repodir)
97 # cleanup build-dir
98 if os.path.exists('build'):
99 shutil.rmtree('build')
97 check_call([py, 'setup.py', 'install'])
100 check_call([py, 'setup.py', 'install'])
98 os.chdir(basedir)
101 os.chdir(basedir)
99
102
General Comments 0
You need to be logged in to leave comments. Login now