Add encoding to jenkins test runner

Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
Dan Ryan
2018-04-13 20:39:48 -04:00
parent 1a64a8d456
commit e8efe3fd72
+3 -3
View File
@@ -27,7 +27,7 @@ if [[ ! -z "$CI" ]]; then
echo "Installing Pipenv…"
pip uninstall -y pipenv
pip install -e "$(pwd)" --upgrade
pipenv install --deploy --system --dev
@@ -62,8 +62,8 @@ fi
# Use tap output if in a CI environment, otherwise just run the tests.
if [[ "$TAP_OUTPUT" ]]; then
echo "$ pipenv run time pytest -v -n auto tests -m \"$TEST_SUITE\" --tap-stream | tee report-$PYTHON.tap"
pipenv run time pytest -v -n auto tests -m "$TEST_SUITE" --tap-stream | tee report.tap
echo "$ pipenv run time python -m pytest -v -n auto -m \"$TEST_SUITE\" --tap-stream tests/ | tee report-$PYTHON.tap"
pipenv run time python -m pytest -v -n auto -m "$TEST_SUITE" --tap-stream tests/ | tee report.tap
else
echo "$ pipenv run time pytest -v -n auto tests -m \"$TEST_SUITE\""