Skip to content

Commit

Permalink
change junitparser back to python3
Browse files Browse the repository at this point in the history
  • Loading branch information
terhorstd committed Nov 29, 2023
1 parent eeea613 commit a4195d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testsuite/do_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ if test "${PYTHON}"; then
PYTEST_VERSION="$(echo "${PYTEST_VERSION}" | cut -d' ' -f2)"
fi

echo "> test python junitparser"
if ! ${PYTHON} -c "import junitparser" >/dev/null 2>&1; then
echo "> test if junitparser is available in python3…"
if ! python3 -c "import junitparser" >/dev/null 2>&1; then
echo "Error: Required Python package 'junitparser' not found."
exit 1
fi
Expand Down

0 comments on commit a4195d9

Please sign in to comment.