Remove references to deprecated "py.test"
This commit is contained in:
parent
8352ad5afa
commit
32c8c981f2
2
Makefile
2
Makefile
|
@ -29,7 +29,7 @@ lint-roll:
|
||||||
$(MAKE) lint
|
$(MAKE) lint
|
||||||
|
|
||||||
test:
|
test:
|
||||||
py.test tests
|
pytest tests
|
||||||
|
|
||||||
test-all:
|
test-all:
|
||||||
tox
|
tox
|
||||||
|
|
|
@ -4,4 +4,4 @@ python_paths= .
|
||||||
xfail_strict=true
|
xfail_strict=true
|
||||||
|
|
||||||
[pytest-watch]
|
[pytest-watch]
|
||||||
runner= py.test --failed-first --maxfail=1 --no-success-flaky-report
|
runner= pytest --failed-first --maxfail=1 --no-success-flaky-report
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -22,7 +22,7 @@ ignore=
|
||||||
[testenv]
|
[testenv]
|
||||||
usedevelop=True
|
usedevelop=True
|
||||||
commands=
|
commands=
|
||||||
core: py.test {posargs:tests/core}
|
core: pytest {posargs:tests/core}
|
||||||
doctest: make -C {toxinidir}/docs doctest
|
doctest: make -C {toxinidir}/docs doctest
|
||||||
basepython =
|
basepython =
|
||||||
doctest: python
|
doctest: python
|
||||||
|
|
Loading…
Reference in New Issue