summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-03-02 22:19:38 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-03-02 22:19:38 -0500
commita16509866ac705896f9d92f815826050e9cfa7f0 (patch)
tree7e1885ad65a24d2862c9cb783193f75395f24c7e
parentd9c3c5711039bb7a5540540418280b0e8023c4d0 (diff)
downloadpytest-runner-a16509866ac705896f9d92f815826050e9cfa7f0.tar.gz
Correct usage example
-rw-r--r--README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.txt b/README.txt
index 86da93a..7b099e8 100644
--- a/README.txt
+++ b/README.txt
@@ -83,7 +83,7 @@ this contingency, consider requiring pytest-runner only when pytest
is invoked::
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
- pytest_runner = ['pytest_runner'] if needs_pytest else []
+ pytest_runner = ['pytest-runner'] if needs_pytest else []
# ...