From 5ab2bdd322703b6dc15421ef96af581d2fbe5845 Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Wed, 27 Mar 2024 13:53:06 +0000 Subject: [PATCH] Fix: Add --all-extras to contributing install command To successfully run tests during development all extras must be installed. --- CONTRIBUTION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTION.md b/CONTRIBUTION.md index 1ddc3d3..b5a3490 100644 --- a/CONTRIBUTION.md +++ b/CONTRIBUTION.md @@ -42,7 +42,7 @@ We use [Poetry](https://python-poetry.org/) for dependency management. If you do Once you have Poetry, you can install the project's dependencies: ```bash -poetry install +poetry install --all-extras ``` ### 3. Pre-Commit Hooks