-
Notifications
You must be signed in to change notification settings - Fork 497
Closed
Description
⇒ Should we switch from python
and pytest
to python3
and pytest-3
?
- Command
python
is not available by default on a vanilla installation. Packagepython3-minimal
providespython3
, and packagepython-is-python3
, which is not installed by default, providespython
:
$ make check-distutils
python setup.py check --restructuredtext --strict
make: python: No such file or directory
make: *** [Makefile:51: check-distutils] Error 127
$
We call python
here:
Lines 50 to 51 in 458de80
check-distutils: | |
python setup.py check --restructuredtext --strict |
- Command
pytest
is not available, instead packagepython3-pytest
providespytest-3
:
$ make pytest
pytest codespell_lib
make: pytest: No such file or directory
make: *** [Makefile:57: pytest] Error 127
$
We call pytest
here:
Lines 56 to 57 in 458de80
pytest: | |
pytest codespell_lib |
Metadata
Metadata
Assignees
Labels
No labels