Changeset 1710:c825f0cc96a3
- Timestamp:
-
Dec 25, 2018, 10:10:57 PM
(2 years ago)
- Author:
- Stefan Schwarzer <sschwarzer@…>
- Branch:
- default
- Message:
-
Call `pytest` via `${PYTHON_BINARY} -m pytest`
This makes sure that Pytest is run with the correct Python interpreter.
Remove the comment because Pytest is invoked with `pytest` for a long
time now.
-
File:
-
Legend:
- Unmodified
- Added
- Removed
-
r1709
|
r1710
|
|
9 | 9 | VERSION=$(shell cat VERSION) |
10 | 10 | PYTHON_BINARY?=python3 |
11 | | # Depending on the development system, this may be `pytest`, `py.test` |
12 | | # or even something else. |
13 | | PYTEST=pytest |
| 11 | PYTEST=${PYTHON_BINARY} -m pytest |
14 | 12 | |
15 | 13 | TEST_DIR=${PROJECT_DIR}/test |