DOC: typo in doc/en/goodpractices.txt ("pytest" -> "PyTest")

This commit is contained in:
Wes Turner 2012-07-18 01:01:37 -05:00
parent 66ed2d123a
commit a73c27da13
1 changed files with 1 additions and 1 deletions

View File

@ -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::