Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: tox.ini

Issue 30021579: Issue 7196 - Ignore both flake8 W503 and W504 in tox.ini (Closed) Base URL: https://hg.adblockplus.org/abpssembly
Patch Set: Created March 2, 2019, 3:26 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [tox] 1 [tox]
2 envlist = py27 2 envlist = py27
3 skipsdist = true 3 skipsdist = true
4 4
5 [pytest] 5 [pytest]
6 # The names of the test files here don't start with 'test_' so we need 6 # The names of the test files here don't start with 'test_' so we need
7 # to instruct pytest to load tests from all files. 7 # to instruct pytest to load tests from all files.
8 python_files = *.py 8 python_files = *.py
9 9
10 [run] 10 [run]
11 # Exclude tests from coverage. 11 # Exclude tests from coverage.
12 omit = */test/* 12 omit = */test/*
13 13
14 [flake8] 14 [flake8]
15 ignore = D1,W504 15 ignore = D1,W503,W504
16 per-file-ignores = 16 per-file-ignores =
17 sitescripts/content_blocker_lists/bin/generate_lists.py : A107,E501 17 sitescripts/content_blocker_lists/bin/generate_lists.py : A107,E501
18 sitescripts/crashes/web/submitCrash.py : A302,E501,E711,F401,N802,N806 18 sitescripts/crashes/web/submitCrash.py : A302,E501,E711,F401,N802,N806
19 sitescripts/crawler/bin/import_sites.py : A105,A206,E501 19 sitescripts/crawler/bin/import_sites.py : A105,A206,E501
20 sitescripts/crawler/web/crawler.py : A107,A108,A206,E501 20 sitescripts/crawler/web/crawler.py : A107,A108,A206,E501
21 sitescripts/extensions/bin/createNightlies.py : A102,A104,A107,A108,A302,D20 0,D202,D205,D208,D400,D401,D403,E501,E722,F841,N802,N806,N812,N813 21 sitescripts/extensions/bin/createNightlies.py : A102,A104,A107,A108,A302,D20 0,D202,D205,D208,D400,D401,D403,E501,E722,F841,N802,N806,N812,N813
22 sitescripts/extensions/bin/updateUpdateManifests.py : A107,A206,D200,D202,D2 05,D400,D401,D403,E501,N802,N806 22 sitescripts/extensions/bin/updateUpdateManifests.py : A107,A206,D200,D202,D2 05,D400,D401,D403,E501,N802,N806
23 sitescripts/extensions/test/conftest.py : D200,D400 23 sitescripts/extensions/test/conftest.py : D200,D400
24 sitescripts/extensions/test/test_createNightlies.py : D400 24 sitescripts/extensions/test/test_createNightlies.py : D400
25 sitescripts/extensions/test/test_updateManifests.py : D401 25 sitescripts/extensions/test/test_updateManifests.py : D401
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 --cov-config tox.ini --cov-report html --cov-report term --cov sitescrip ts \ 111 --cov-config tox.ini --cov-report html --cov-report term --cov sitescrip ts \
112 sitescripts/hg/test \ 112 sitescripts/hg/test \
113 sitescripts/notifications/test \ 113 sitescripts/notifications/test \
114 sitescripts/stats/test \ 114 sitescripts/stats/test \
115 sitescripts/formmail/test \ 115 sitescripts/formmail/test \
116 sitescripts/extensions/test \ 116 sitescripts/extensions/test \
117 sitescripts/subscriptions/test \ 117 sitescripts/subscriptions/test \
118 sitescripts/reports/tests \ 118 sitescripts/reports/tests \
119 tests 119 tests
120 flake8 sitescripts multiplexer.py multiplexer.fcgi 120 flake8 sitescripts multiplexer.py multiplexer.fcgi
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld