Fix typos in a document
This commit is contained in:
parent
d9ce7f143e
commit
d31f4dcba8
|
@ -73,7 +73,7 @@ this to your ``setup.py`` file::
|
||||||
pass
|
pass
|
||||||
def run(self):
|
def run(self):
|
||||||
import sys,subprocess
|
import sys,subprocess
|
||||||
errno = subprocess.call([sys.executable, 'runtest.py'])
|
errno = subprocess.call([sys.executable, 'runtests.py'])
|
||||||
raise SystemExit(errno)
|
raise SystemExit(errno)
|
||||||
setup(
|
setup(
|
||||||
#...,
|
#...,
|
||||||
|
@ -85,7 +85,7 @@ If you now type::
|
||||||
|
|
||||||
python setup.py test
|
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
|
standalone version of ``py.test`` no prior installation whatsoever is
|
||||||
required for calling the test command. You can also pass additional
|
required for calling the test command. You can also pass additional
|
||||||
arguments to the subprocess-calls such as your test directory or other
|
arguments to the subprocess-calls such as your test directory or other
|
||||||
|
|
Loading…
Reference in New Issue