1
0
mirror of https://github.com/rancher/os.git synced 2025-09-21 02:19:48 +00:00

Do not remove usr in test runs

This commit is contained in:
Ivan Mikushin
2015-10-15 16:56:28 +05:00
parent 99eda031e3
commit c0c29631fd
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ def rancheros_version(build_conf):
def run_qemu(request, run_args=[]):
print('\nStarting QEMU')
p = subprocess.Popen(['./scripts/run', '--qemu', '--no-rebuild', '--fresh'] + run_args,
p = subprocess.Popen(['./scripts/run', '--qemu', '--no-rebuild', '--no-rm-usr', '--fresh'] + run_args,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True)
def fin():