From d246bdca07b1ac100c636fa1fe3a8bb432643221 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 6 Mar 2018 09:49:23 -0500 Subject: [PATCH] ci no venv Signed-off-by: Kenneth Reitz --- run-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-tests.sh b/run-tests.sh index f93a9085..9ad55ec2 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -21,7 +21,7 @@ if [[ ! -z "$CI" ]]; then echo "Installing Pipenv…" - pip install -e . --upgrade --upgrade-strategy=only-if-needed + pip install -e "$(pwd)" --upgrade --upgrade-strategy=only-if-needed pipenv install --deploy --system --dev TAP_OUPUT=1 @@ -73,7 +73,7 @@ fi if [[ "$TAP_OUTPUT" ]]; then echo "$ pipenv run time pytest -v -n auto tests -m \"$TEST_SUITE\" --tap-stream | tee report.tap" - "$RAM_DISK/.venv/bin/pipenv" run time pytest -v -n auto tests -m "$TEST_SUITE" --tap-stream | tee report.tap + pipenv run time pytest -v -n auto tests -m "$TEST_SUITE" --tap-stream | tee report.tap else echo "$ pipenv run time pytest -v -n auto tests -m \"$TEST_SUITE\"" "$RAM_DISK/.venv/bin/pipenv" run time pytest -v -n auto tests -m "$TEST_SUITE"