s/py.test/pytest - fix #440

patch from@danc86 thanks!
This commit is contained in:
benoitc 2012-11-26 08:11:20 +01:00
parent b304d8f508
commit facb1a668c

View File

@ -56,7 +56,7 @@ class PyTest(Command):
def run(self):
import sys,subprocess
basecmd = [sys.executable, '-m', 'py.test']
basecmd = [sys.executable, '-m', 'pytest']
if self.cov:
basecmd += ['--cov', 'gunicorn']
errno = subprocess.call(basecmd + ['tests'])