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

Delta Between Two Patch Sets: tox.ini

Issue 29756669: Noissue - Adapt best practices for trailing commas (python-abp) (Closed)
Left Patch Set: Created April 19, 2018, 12:55 p.m.
Right Patch Set: Re-run script on Python 2, added flake8-commas extension Created April 19, 2018, 2:44 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « tests/test_parser.py ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 [tox] 1 [tox]
2 envlist = py27,py35,py36,pypy,coverage,flake8 2 envlist = py27,py35,py36,pypy,coverage,flake8
3 3
4 [testenv] 4 [testenv]
5 deps = 5 deps =
6 pytest 6 pytest
7 mock 7 mock
8 commands = 8 commands =
9 py.test tests 9 py.test tests
10 10
11 [testenv:coverage] 11 [testenv:coverage]
12 deps = 12 deps =
13 pytest-cov 13 pytest-cov
14 mock 14 mock
15 commands = 15 commands =
16 py.test --cov=abp --cov-report=term-missing tests 16 py.test --cov=abp --cov-report=term-missing tests
17 17
18 # We have to install our package in development mode 18 # We have to install our package in development mode
19 # so that pytest-cov can find the .coverage file. 19 # so that pytest-cov can find the .coverage file.
20 usedevelop = true 20 usedevelop = true
21 21
22 [testenv:flake8] 22 [testenv:flake8]
23 basepython = python3 23 basepython = python3
24 skip_install = true 24 skip_install = true
25 deps = 25 deps =
26 flake8 26 flake8
27 flake8-docstrings 27 flake8-docstrings
28 flake8-commas
28 pep8-naming 29 pep8-naming
29 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake 8-eyeo 30 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake 8-eyeo
30 commands = 31 commands =
31 flake8 --ignore=D107 abp 32 flake8 --ignore=D107 abp
32 flake8 --ignore=D1 tests setup.py 33 flake8 --ignore=D1 tests setup.py
LEFTRIGHT

Powered by Google App Engine
This is Rietveld