From 4c0b1cd5e180b2c5a7ea31eeff083d64d9fdf6b8 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Tue, 7 Jun 2016 18:46:43 -0500 Subject: [PATCH] Fix tests broken by updating the default ignore list --- tests/integration/test_aggregator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_aggregator.py b/tests/integration/test_aggregator.py index 2186c35..bb87be0 100644 --- a/tests/integration/test_aggregator.py +++ b/tests/integration/test_aggregator.py @@ -43,6 +43,6 @@ def test_aggregate_options_when_isolated(optmanager): assert options.isolated is True assert options.select == ['E11', 'E34', 'E402', 'W', 'F'] assert sorted(options.ignore) == [ - 'E121', 'E123', 'E126', 'E226', 'E24', 'E704', 'E8', + 'E121', 'E123', 'E126', 'E226', 'E24', 'E704', 'E8', 'W503', 'W504', ] assert options.exclude == [os.path.abspath('tests/*')]