Revert "Start fakeroot faked in debug mode - fixes EISDIR issues"

This commit is contained in:
enkore 2017-06-03 22:02:52 +02:00 committed by GitHub
parent a2d08e3186
commit b06ceb6547
3 changed files with 2 additions and 8 deletions

View File

@ -19,5 +19,5 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
# no fakeroot on OS X
sudo tox -e $TOXENV -r
else
fakeroot -f scripts/faked-debug.sh -u tox -r
fakeroot -u tox -r
fi

2
Vagrantfile vendored
View File

@ -324,7 +324,7 @@ def run_tests(boxname)
# otherwise: just use the system python
if which fakeroot 2> /dev/null; then
echo "Running tox WITH fakeroot -u"
fakeroot -f scripts/faked-debug.sh -u tox --skip-missing-interpreters
fakeroot -u tox --skip-missing-interpreters
else
echo "Running tox WITHOUT fakeroot -u"
tox --skip-missing-interpreters

View File

@ -1,6 +0,0 @@
#!/bin/sh
if which faked; then
faked --debug "$@"
else
faked-sysv --debug "$@"
fi