Skip to content

Commit 73dfb13

Browse files
committed
more README changes
1 parent 0ea6625 commit 73dfb13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pytest-bdd/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ Below are some common options (just remember to use `pipenv`):
7171
# run all tests
7272
pytest
7373

74-
# filter tests by step module
74+
# filter tests by test module
7575
# note: feature files cannot be run directly
7676
pytest tests/step_defs/test_unit_basic.py
7777
pytest tests/step_defs/test_unit_outlines.py
7878
pytest tests/step_defs/test_unit_service.py
7979
pytest tests/step_defs/test_unit_web.py
8080

8181
# filter tests by tags
82-
# it is typically better to run by tag than by path
82+
# running by tag is typically better than running by path
8383
pytest -k "unit"
8484
pytest -k "service"
8585
pytest -k "web"
@@ -91,7 +91,7 @@ pytest -junitxml=<path>
9191
```
9292

9393
`pytest-bdd` tests can be executed and filtered together with regular `pytest` tests.
94-
Tests can all be within the same directory.
94+
Tests can all be located within the same directory.
9595
Tags work just like [pytest.mark](https://docs.pytest.org/en/latest/example/markers.html).
9696
All other `pytest` plugins should work, too. For example:
9797

0 commit comments

Comments
 (0)