mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-24 00:37:56 +00:00
vagrant: tests: announce whether fakeroot is used or not
This commit is contained in:
parent
af2366693a
commit
9577121f96
1 changed files with 2 additions and 0 deletions
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -248,8 +248,10 @@ def run_tests(boxname)
|
||||||
fi
|
fi
|
||||||
# otherwise: just use the system python
|
# otherwise: just use the system python
|
||||||
if which fakeroot > /dev/null; then
|
if which fakeroot > /dev/null; then
|
||||||
|
echo "Running tox WITH fakeroot -u"
|
||||||
fakeroot -u tox --skip-missing-interpreters
|
fakeroot -u tox --skip-missing-interpreters
|
||||||
else
|
else
|
||||||
|
echo "Running tox WITHOUT fakeroot -u"
|
||||||
tox --skip-missing-interpreters
|
tox --skip-missing-interpreters
|
||||||
fi
|
fi
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in a new issue