From 514341303cb60894c495776efc530a402a77b44a Mon Sep 17 00:00:00 2001 From: Istvan Kiss Date: Fri, 18 Oct 2024 10:09:13 +0200 Subject: [PATCH] Fix pytest command typo installation.rst --- docs/source/howto/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/howto/installation.rst b/docs/source/howto/installation.rst index c41760673..5a25f6184 100644 --- a/docs/source/howto/installation.rst +++ b/docs/source/howto/installation.rst @@ -54,7 +54,7 @@ This sets the development environment to work in-place on the code. $ conda env create --name tomobar --file conda-recipe/environment/environment.yml $ conda activate tomobar $ pip install -e .[dev] # the editable environment - $ pytests tests/ # all tests should pass + $ pytest tests/ # all tests should pass Conda builds +++++++++++++