From: Jose Pedro Oliveira Date: Sun, 26 Sep 2021 19:15:00 +0000 (+0200) Subject: doc: replace the old py.test references by pytest X-Git-Tag: 1.0.13~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f6ad9aa7ad1fb0ceef9b535e22b654b9e05924a4;p=thirdparty%2Flldpd.git doc: replace the old py.test references by pytest --- diff --git a/README.md b/README.md index 0f385c43..6f350b16 100644 --- a/README.md +++ b/README.md @@ -362,7 +362,7 @@ that: afl-fuzz -i inputs -o outputs ./decode @@ There is a general test suite with `make check`. It's also possible to -run integration tests. They need [py.test](http://pytest.org/latest/) +run integration tests. They need [pytest](http://pytest.org/latest/) and rely on Linux containers to be executed. To enable code coverage, use: diff --git a/tests/integration/.gitignore b/tests/integration/.gitignore index 36200ccd..eb727832 100644 --- a/tests/integration/.gitignore +++ b/tests/integration/.gitignore @@ -2,5 +2,5 @@ __pycache__ *.pyc -# py.test -/.cache +# pytest +/.pytest_cache diff --git a/tests/integration/README.md b/tests/integration/README.md index 90940b04..3128ca7f 100644 --- a/tests/integration/README.md +++ b/tests/integration/README.md @@ -16,6 +16,6 @@ _lldpd user. Then, tests can be run with: - $ sudo $(which py.test) -vv -n 10 --boxed + $ sudo $(which pytest) -vv -n 10 --boxed Add an additional `-v` to get even more traces.