Files
scylladb/test/ldap/README.md
Andrei Chekun 57b66e6b2e test.py: move the readme file for LDAP tests to the correct location
README file was created in incorrect location, now it moved to the
directory with source files where it intended to be.
2025-04-22 19:03:28 +02:00

18 lines
590 B
Markdown

# Running tests with pytest
To run test with pytest execute
```bash
pytest test/ldap
```
To execute only one file, provide the path filename
```bash
pytest test/unit/role_manager_test.cc
```
Since it's a normal path, autocompletion works in the terminal out of the box.
To provide a specific mode, use the next parameter `--mode dev`,
if parameter isn't provided pytest tries to use `ninja mode_list` to find out the compiled modes.
Parallel execution is controlled by `pytest-xdist` and the parameter `-n auto`.
This command starts tests with the number of workers equal to CPU cores.