From b2914fe212b9d8c386706e97b399406f46194ab0 Mon Sep 17 00:00:00 2001 From: martetassyns <78635303+martetassyns@users.noreply.github.com> Date: Fri, 22 Nov 2024 20:38:24 +0100 Subject: [PATCH] Document required step before full test suite can be executed (#2466) Co-authored-by: Franck Nijhof --- docs/development_testing.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/development_testing.md b/docs/development_testing.md index 3e17ec6b..2c39f377 100644 --- a/docs/development_testing.md +++ b/docs/development_testing.md @@ -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