Fix typos in a document

This commit is contained in:
ENDOH takanao 2012-11-10 16:29:43 +09:00
parent d9ce7f143e
commit d31f4dcba8
1 changed files with 2 additions and 2 deletions

View File

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