From 9577121f96187fd02b56707d58cf34cf9cf7fd25 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 20 Oct 2015 23:27:11 +0200 Subject: [PATCH] vagrant: tests: announce whether fakeroot is used or not --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index c14247713..90864f589 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -248,8 +248,10 @@ def run_tests(boxname) fi # otherwise: just use the system python if which fakeroot > /dev/null; then + echo "Running tox WITH fakeroot -u" fakeroot -u tox --skip-missing-interpreters else + echo "Running tox WITHOUT fakeroot -u" tox --skip-missing-interpreters fi EOF