mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
Document how to call the pytest command
This commit is contained in:
10
README.md
10
README.md
@ -34,10 +34,18 @@ to your `PATH` if it is not.
|
|||||||
export PATH=$HOME/.local/bin/:$HOME/go/bin/:$PATH
|
export PATH=$HOME/.local/bin/:$HOME/go/bin/:$PATH
|
||||||
```
|
```
|
||||||
|
|
||||||
## Test selection
|
## Using pytest
|
||||||
|
|
||||||
irctest is invoked using the pytest test runner / CLI.
|
irctest is invoked using the pytest test runner / CLI.
|
||||||
|
|
||||||
|
You can usually invoke it with `python3 -m pytest` command; which can often
|
||||||
|
be called by the `pytest` or `pytest-3` commands (if not, alias them if you
|
||||||
|
are planning to use them often).
|
||||||
|
|
||||||
|
The rest of this README assumes `pytest` works.
|
||||||
|
|
||||||
|
## Test selection
|
||||||
|
|
||||||
A major feature of pytest that irctest heavily relies on is test selection.
|
A major feature of pytest that irctest heavily relies on is test selection.
|
||||||
Using the `-k` option, you can select and deselect tests based on their names
|
Using the `-k` option, you can select and deselect tests based on their names
|
||||||
and/or markers (listed in `pytest.ini`).
|
and/or markers (listed in `pytest.ini`).
|
||||||
|
Reference in New Issue
Block a user