summaryrefslogtreecommitdiff
path: root/testsuite/test_all.py
diff options
context:
space:
mode:
authorKristian Glass <git@doismellburning.co.uk>2015-08-22 11:32:27 +0100
committerKristian Glass <git@doismellburning.co.uk>2015-08-22 11:53:54 +0100
commit8aac6b5cc3fc2fba33c5a9108feae97e7907ce9b (patch)
treec9d51784d3b545301d682c6759a8719ec72bec4b /testsuite/test_all.py
parent151758ce8f29fd65e10dc0720446c5a3bb164602 (diff)
downloadpep8-8aac6b5cc3fc2fba33c5a9108feae97e7907ce9b.tar.gz
Test behaviour regarding multi-line ignore parsing in config_file
At time of writing, these tests fail. If this is later fixed, someone may wish to remove this warning!
Diffstat (limited to 'testsuite/test_all.py')
-rw-r--r--testsuite/test_all.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/test_all.py b/testsuite/test_all.py
index 50e2cb9..bfb61d5 100644
--- a/testsuite/test_all.py
+++ b/testsuite/test_all.py
@@ -46,11 +46,12 @@ class Pep8TestCase(unittest.TestCase):
def suite():
- from testsuite import test_api, test_shell, test_util
+ from testsuite import test_api, test_parser, test_shell, test_util
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(Pep8TestCase))
suite.addTest(unittest.makeSuite(test_api.APITestCase))
+ suite.addTest(unittest.makeSuite(test_parser.ParserTestCase))
suite.addTest(unittest.makeSuite(test_shell.ShellTestCase))
suite.addTest(unittest.makeSuite(test_util.UtilTestCase))
return suite