From a73c27da13220351e0ef38db1cd914550d92f67b Mon Sep 17 00:00:00 2001 From: Wes Turner Date: Wed, 18 Jul 2012 01:01:37 -0500 Subject: [PATCH] DOC: typo in doc/en/goodpractices.txt ("pytest" -> "PyTest") --- doc/en/goodpractises.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/goodpractises.txt b/doc/en/goodpractises.txt index e294eefa8..66c2f7bfa 100644 --- a/doc/en/goodpractises.txt +++ b/doc/en/goodpractises.txt @@ -119,7 +119,7 @@ to support running a pytest from test requirements:: setup( #..., tests_require=['pytest'], - cmdclass = {'test': pytest}, + cmdclass = {'test': PyTest}, ) Now if you run::