]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
doc: replace the old py.test references by pytest
authorJose Pedro Oliveira <jose.p.oliveira.oss@gmail.com>
Sun, 26 Sep 2021 19:15:00 +0000 (21:15 +0200)
committerVincent Bernat <vincent@bernat.ch>
Sun, 26 Sep 2021 20:21:20 +0000 (22:21 +0200)
README.md
tests/integration/.gitignore
tests/integration/README.md

index 0f385c4368c2fbe55f7e26368defb80b8b847b4f..6f350b16234d7f77c519de73406786b985b2528a 100644 (file)
--- 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:
index 36200ccdb8b9ee6f452752b87e2568bf23226345..eb727832696cfa372cf0b58d5bba0cfc1992c741 100644 (file)
@@ -2,5 +2,5 @@
 __pycache__
 *.pyc
 
-# py.test
-/.cache
+# pytest
+/.pytest_cache
index 90940b04c1c819f8478a520fab7f66b2e9edb76f..3128ca7f5e4ab3f5374ed410d0fe664b912c9c53 100644 (file)
@@ -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.