Merge pull request #1036 from russel/rlw_766

Remove references to distutils as per Issue 766.
This commit is contained in:
Floris Bruynooghe 2015-09-21 12:19:14 +01:00
commit cd4557cce8
1 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@ Choosing a test layout / import rules
want to keep tests separate from actual application code (often a good
idea)::
setup.py # your distutils/setuptools Python package metadata
setup.py # your setuptools Python package metadata
mypkg/
__init__.py
appmodule.py
@ -51,7 +51,7 @@ Choosing a test layout / import rules
have direct relation between (unit-)test and application modules and
want to distribute your tests along with your application::
setup.py # your distutils/setuptools Python package metadata
setup.py # your setuptools Python package metadata
mypkg/
__init__.py
appmodule.py
@ -178,10 +178,10 @@ You can tell people to download the script and then e.g. run it like this::
Integrating with distutils / ``python setup.py test``
--------------------------------------------------------
Integrating with setuptools / ``python setup.py test``
------------------------------------------------------
You can integrate test runs into your distutils or
You can integrate test runs into your
setuptools based project. Use the `genscript method`_
to generate a standalone ``pytest`` script::