tests: add a note to README.md about running tests in parallel

This commit is contained in:
pythcoiner 2024-09-06 04:59:33 +02:00
parent 8b76a6b977
commit ef5291d7e8

View File

@ -68,6 +68,13 @@ pytest -vvv --log-cli-level=DEBUG -k test_startup
Note that we record all logs from daemons, and we start them with `log_level = "debug"`.
#### Running tests in parallel
In order to run tests in parallel, you can use `-n` arg:
```
pytest -n 8 tests/
```
### Test lints
Just use [`black`](https://github.com/psf/black).