[Python-checkins] distutils2: docs improvements
tarek.ziade
python-checkins at python.org
Sun Sep 19 10:20:22 CEST 2010
tarek.ziade pushed 6a3a5855a910 to distutils2:
http://hg.python.org/distutils2/rev/6a3a5855a910
changeset: 629:6a3a5855a910
user: Konrad Delong <konryd at gmail.com>
date: Sun Aug 15 11:39:54 2010 +0200
summary: docs improvements
files: docs/source/distutils/newcommands.rst
diff --git a/docs/source/distutils/newcommands.rst b/docs/source/distutils/newcommands.rst
--- a/docs/source/distutils/newcommands.rst
+++ b/docs/source/distutils/newcommands.rst
@@ -29,11 +29,13 @@
``--suite=NAME, -s NAME``
Specify the test suite (or module, class, or method) to be run
- (for example ``some_module.test_suite``). The default for this option can be
+ (for example ``my_package.tests.all_tests``). The default for this option can be
set by in your ``setup.cfg`` file.
- [test]
- suite = my_package.tests.test_all
+.. code-block:: ini
+
+ [test]
+ suite = my_package.tests.all_tests
``--runner=NAME, -r NAME``
Specify the test runner to be called.
@@ -117,7 +119,7 @@
python setup.py upload_docs --upload-dir=docs/build/html
-As with any other ``setuptools`` based command, you can define useful
+As with any other command, you can define useful
defaults in the ``setup.cfg`` of your Python project, for example:
.. code-block:: ini
--
Repository URL: http://hg.python.org/distutils2
More information about the Python-checkins
mailing list