Document required step before full test suite can be executed (#2466)

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
martetassyns 2024-11-22 20:38:24 +01:00 committed by GitHub
parent 5a5a911881
commit b2914fe212
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,6 +17,12 @@ To run our linters, on the full code base, run the following command:
pre-commit run --all-files
```
To run the full test suite, more dependencies are required than what is set up in the devcontainer by default. To install all dependencies, activate the virtual environment and run the command:
```shell
uv pip install -r requirements_test_all.txt
```
To start the tests, and run the full test suite, activate the virtual environment and run the command:
```shell