Skip to content

Commit

Permalink
doc: replace the old py.test references by pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoliv authored and vincentbernat committed Sep 26, 2021
1 parent 20c1ef7 commit f6ad9aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
__pycache__
*.pyc

# py.test
/.cache
# pytest
/.pytest_cache
2 changes: 1 addition & 1 deletion tests/integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit f6ad9aa

Please sign in to comment.