From 22ab52e7a413c48a9a359d37713de93df5ab3d62 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Thu, 21 Dec 2023 14:29:56 -0600 Subject: [PATCH] Wrap the test install with quotes. --- docs/contributing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.rst b/docs/contributing.rst index fbfa109..ae316d8 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -26,7 +26,7 @@ test those features thoroughly. To run the tests, install the requirements (probably into a virtualenv_):: pip install -e . - pip install -e .[tests] + pip install -e ".[tests]" Then just `py.test`_ to run the tests::