diff options
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | CHANGES.txt | 2 | ||||
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | setup.py | 1 | ||||
-rw-r--r-- | tox.ini | 1 |
5 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 1c2c279..d0a21c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ script: - python pep8.py --testsuite testsuite - python pep8.py --statistics pep8.py - python pep8.py --doctest + - python -m testsuite.test_all matrix: allow_failures: - python: pypy diff --git a/CHANGES.txt b/CHANGES.txt index 3b1da5f..7c196e0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -20,6 +20,8 @@ Changelog * Do not report false E302 when the source file has a coding cookie or a comment on the first line. (Issue #174) +* Reorganize the tests and add basic tests for the API. (Issue #161) + 1.4.4 (2013-02-24) ------------------ @@ -7,4 +7,7 @@ selftest : doctest : python pep8.py --doctest -alltest : test selftest doctest +unittest : + python -m testsuite.test_all + +alltest : test selftest doctest unittest @@ -52,4 +52,5 @@ setup( 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Libraries :: Python Modules', ], + test_suite='testsuite.test_all', ) @@ -12,6 +12,7 @@ commands = {envpython} pep8.py --testsuite testsuite {envpython} pep8.py --statistics pep8.py {envpython} pep8.py --doctest + {envpython} pep8.py -m testsuite.test_all [pep8] select = |