From: Magnus Jacobsson Date: Wed, 3 Jun 2020 11:33:16 +0000 (+0200) Subject: Remove python interpreter selection. Always use python3 X-Git-Tag: 2.44.1~19^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a3d55af1323734ac4cb872f812392c7c896b407;p=graphviz Remove python interpreter selection. Always use python3 --- diff --git a/ci/test.sh b/ci/test.sh index 14b6cdc1a..5f6e9e02c 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -28,9 +28,4 @@ else ${DIR}/os/${ARCH}/graphviz-plugins-gd-${GV_VERSION}*.rpm \ ${DIR}/os/${ARCH}/graphviz-nox-${GV_VERSION}*.rpm fi -if command -v python3; then - python=python3 -else - python=python2 -fi -$python -m pytest --junitxml=report.xml tests rtest +python3 -m pytest --junitxml=report.xml tests rtest