1
0
mirror of https://github.com/rancher/os.git synced 2025-06-29 00:06:49 +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

@ -7,4 +7,4 @@ cp ./tests/integration/assets/test_02/build.conf ./
make -f Makefile.docker DEV_BUILD=1 minimal
exec ./scripts/run --qemu --no-rebuild --fresh
exec ./scripts/run --qemu --no-rebuild --no-rm-usr --fresh

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():