浏览代码

vagrant: tests: announce whether fakeroot is used or not

Thomas Waldmann 9 年之前
父节点
当前提交
9577121f96
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      Vagrantfile

+ 2 - 0
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