From d31f4dcba8b8e56f5af9ddd94ca11521823c6c23 Mon Sep 17 00:00:00 2001 From: ENDOH takanao Date: Sat, 10 Nov 2012 16:29:43 +0900 Subject: [PATCH] Fix typos in a document --- doc/en/goodpractises.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/en/goodpractises.txt b/doc/en/goodpractises.txt index ca405b62b..a547ed7a4 100644 --- a/doc/en/goodpractises.txt +++ b/doc/en/goodpractises.txt @@ -73,7 +73,7 @@ this to your ``setup.py`` file:: pass def run(self): import sys,subprocess - errno = subprocess.call([sys.executable, 'runtest.py']) + errno = subprocess.call([sys.executable, 'runtests.py']) raise SystemExit(errno) setup( #..., @@ -85,7 +85,7 @@ If you now type:: python setup.py test -this will execute your tests using ``runtest.py``. As this is a +this will execute your tests using ``runtests.py``. As this is a standalone version of ``py.test`` no prior installation whatsoever is required for calling the test command. You can also pass additional arguments to the subprocess-calls such as your test directory or other