Fix tests broken by updating the default ignore list

This commit is contained in:
Ian Cordasco 2016-06-07 18:46:43 -05:00
parent 27dbd61f12
commit 4c0b1cd5e1
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A

View file

@ -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/*')]