ci no venv

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-03-06 09:49:23 -05:00
parent edd020ed99
commit d246bdca07
+2 -2
View File
@@ -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"