From facb1a668c804232b11f7178a21cc8f94239e940 Mon Sep 17 00:00:00 2001 From: benoitc Date: Mon, 26 Nov 2012 08:11:20 +0100 Subject: [PATCH] s/py.test/pytest - fix #440 patch from@danc86 thanks! --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index aef666b5..65619dd3 100644 --- a/setup.py +++ b/setup.py @@ -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'])