summaryrefslogtreecommitdiff
path: root/pytest.py
diff options
context:
space:
mode:
authorNicolas Chauvat <nicolas.chauvat@logilab.fr>2008-07-13 21:32:22 +0200
committerNicolas Chauvat <nicolas.chauvat@logilab.fr>2008-07-13 21:32:22 +0200
commitaab929e273a41a188a244b5d2c8b3e53408172ab (patch)
treebdbb169569082a3290de6dbdaf7ef7d68bc919c1 /pytest.py
parent47df8cd6dff5c08b32966a7b59b5da75d23123de (diff)
downloadlogilab-common-aab929e273a41a188a244b5d2c8b3e53408172ab.tar.gz
improve doc for better epydoc generation.
Diffstat (limited to 'pytest.py')
-rw-r--r--pytest.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/pytest.py b/pytest.py
index f59e4f7..df1007e 100644
--- a/pytest.py
+++ b/pytest.py
@@ -17,7 +17,6 @@ If you wish to customize the tester, you'll have to define a class named
defined in the pytest module. Take a look at the `PyTester` and `DjangoTester`
classes for more information about what can be done.
-
For instance, if you wish to add a custom -l option to specify a loglevel, you
could define the following ``pytestconf.py`` file ::
@@ -48,7 +47,12 @@ the ``optval`` method::
loglevel = self.optval('loglevel')
# ...
+
+:copyright: 2000-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
+:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
+:license: General Public License version 2 - http://www.gnu.org/licenses
"""
+__docformat__ = "restructuredtext en"
PYTEST_DOC = """%prog [OPTIONS] [testfile [testpattern]]