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.
This commit is contained in:
Oliver Smith 2018-10-25 07:12:18 +02:00
parent f09845bced
commit 8d461b2ecf
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 1 deletions

View File

@ -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