1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-24 08:45:13 +00:00

Remove the flake8 test for Vagrant VMs

This is tested after each commit so this test is quite useless on the
Vagrant VMs.
This commit is contained in:
Rémi Oudin 2020-04-11 14:21:32 +02:00
parent 1746ce3fe6
commit dc22694e6d
No known key found for this signature in database
GPG key ID: A46E9AE5009FB47D

4
Vagrantfile vendored
View file

@ -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