From 974748fd9a0ecdd494cdc51aeb16c54d38256d58 Mon Sep 17 00:00:00 2001 From: Ian Lee Date: Wed, 17 Dec 2014 23:42:03 -0800 Subject: Update DEFAULT_IGNORE to add E121 & E126 per discussion in issues #256 #316 --- testsuite/test_api.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'testsuite') diff --git a/testsuite/test_api.py b/testsuite/test_api.py index de7bc7b..341fb34 100644 --- a/testsuite/test_api.py +++ b/testsuite/test_api.py @@ -179,7 +179,10 @@ class APITestCase(unittest.TestCase): options = parse_argv('').options self.assertEqual(options.select, ()) - self.assertEqual(options.ignore, ('E123', 'E226', 'E24', 'E704')) + self.assertEqual( + options.ignore, + ('E121', 'E123', 'E126', 'E226', 'E24', 'E704') + ) options = parse_argv('--doctest').options self.assertEqual(options.select, ()) -- cgit v1.2.1