1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-27 18:28:42 +00:00

Merge pull request #5102 from Gu1nness/5020-openindiana

Remove the flake8 test for Vagrant VMs
This commit is contained in:
TW 2020-04-11 15:57:42 +02:00 committed by GitHub
commit 59ae0fc336
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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