From 65e222e177a2e4d9af5578fa2c670bed4e136e3f Mon Sep 17 00:00:00 2001 From: mgaughan Date: Tue, 22 Jul 2025 17:20:59 -0400 Subject: [PATCH] fixing typo in documentation pytest -> poetry --- docs/source/development/testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/development/testing.md b/docs/source/development/testing.md index 290592c..c17ab51 100644 --- a/docs/source/development/testing.md +++ b/docs/source/development/testing.md @@ -8,7 +8,7 @@ ## Running Tests -1. Make sure you've installed the dev dependencies with `pytest install --with dev` +1. Make sure you've installed the dev dependencies with `poetry install --with dev` 2. Tests can be run as follows: ```{code} bash #### Command prefix of 'poetry run' removed here for simplicity @@ -29,4 +29,4 @@ pytest -ra -v tests/test_file.py::test_function_name 3. Some tests require environment variables to be set. You can use the example `.env.test.example` file as a template. Copy it to `.env.test` and fill in the required values. This file will be loaded automatically by `pytest`. ```{code} bash cp .env.test.example .env.test -``` \ No newline at end of file +```