From dc22694e6d37dfcab4374f8a3a52e030a7df574d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Oudin?= Date: Sat, 11 Apr 2020 14:21:32 +0200 Subject: [PATCH] Remove the flake8 test for Vagrant VMs This is tested after each commit so this test is quite useless on the Vagrant VMs. --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 664da7658..5f8bb9da4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -228,10 +228,10 @@ def run_tests(boxname) # otherwise: just use the system python if which fakeroot 2> /dev/null; then echo "Running tox WITH fakeroot -u" - fakeroot -u tox --skip-missing-interpreters + fakeroot -u tox --skip-missing-interpreters -e py35,py36,py37,py38 else echo "Running tox WITHOUT fakeroot -u" - tox --skip-missing-interpreters + tox --skip-missing-interpreters -e py35,py36,py37,py38 fi EOF end