From 8d461b2ecff55a3033594dc7ff31ffe178bb5b05 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 25 Oct 2018 07:12:18 +0200 Subject: [PATCH] testcases_fast.sh: explicitly use "python3" Python3 isn't the default for all Linux distributions yet, so Fedora 28 for example will try to start the testsuite with Python 2 instead. --- test/testcases_fast.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testcases_fast.sh b/test/testcases_fast.sh index c377b455..6cd5d127 100755 --- a/test/testcases_fast.sh +++ b/test/testcases_fast.sh @@ -44,4 +44,4 @@ done # Note: Pytest is called through python so that this is compatible with # running from a venv (e.g. in gitlab CI) # shellcheck disable=SC2086 -python -m pytest -vv -x --cov=pmb $enabled --tb=native +python3 -m pytest -vv -x --cov=pmb $enabled --tb=native