correct cmdclass

This commit is contained in:
Andrew Champion 2018-08-24 12:07:22 -07:00
parent c82906105c
commit 14ffadf004
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ your own setuptools Test command for invoking pytest.
setup(
# ...,
tests_require=["pytest"],
cmdclass={"test": PyTest},
cmdclass={"pytest": PyTest},
)
Now if you run::