From d6f8ea8fd19213f760927360408f24298c0ec91e Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Fri, 25 May 2018 15:00:32 -0700 Subject: [PATCH] pytest: drop the dot! Committed via https://github.com/asottile/all-repos --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e9a9f9e3..ad7bf01f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -26,7 +26,7 @@ your changes immediately. ### Running a specific test Running a specific test with the environment activated is as easy as: -`py.test tests -k test_the_name_of_your_test` +`pytest tests -k test_the_name_of_your_test` ### Running all the tests @@ -36,7 +36,7 @@ significant cpu while running the slower node / ruby integration tests. Alternatively, with the environment activated you can run all of the tests using: -`py.test tests` +`pytest tests` ### Setting up the hooks