summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicharda Butler <39577672+RikkiButler20@users.noreply.github.com>2020-08-21 15:42:24 -0700
committerGitHub <noreply@github.com>2020-08-21 17:42:24 -0500
commitd599e4d9d440ee146fb864b3ba043c82f31e5f8b (patch)
treedbd5d720fb2940589e9e90b56fb76ced9758f576
parentfebc8ccb15864e910d7fd4cd6c452324f20cb186 (diff)
downloadspack-d599e4d9d440ee146fb864b3ba043c82f31e5f8b.tar.gz
spack-d599e4d9d440ee146fb864b3ba043c82f31e5f8b.tar.bz2
spack-d599e4d9d440ee146fb864b3ba043c82f31e5f8b.tar.xz
spack-d599e4d9d440ee146fb864b3ba043c82f31e5f8b.zip
Added the file path for running a specific test (#18214)
-rw-r--r--lib/spack/docs/contribution_guide.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/docs/contribution_guide.rst b/lib/spack/docs/contribution_guide.rst
index 66f387c1ab..2fc6546f5e 100644
--- a/lib/spack/docs/contribution_guide.rst
+++ b/lib/spack/docs/contribution_guide.rst
@@ -111,7 +111,7 @@ And this would run the ``test_platform`` test from that file:
.. code-block:: console
- $ spack test architecture.py::test_platform
+ $ spack test lib/spack/spack/test/architecture.py::test_platform
This allows you to develop iteratively: make a change, test that change,
make another change, test that change, etc. We use `pytest