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

Delta Between Two Patch Sets: tox.ini

Issue 29338156: Issue 3754 - Initial setup of the python-abp repo. (Closed)
Left Patch Set: Move style and coverage checking to tox.ini, strip setup.py to only have 'devenv' command, remove n… Created March 15, 2016, 6:35 p.m.
Right Patch Set: Remove pytest from qa dependencies in tox.ini, change "filterlist" to "filter list" Created March 17, 2016, 2:39 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « tests/test_line_parsing.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
1 [tox] 1 [tox]
2 envlist = py27, py35, pypy, qa 2 envlist = py27, py35, pypy, qa
3 3
4 [testenv] 4 [testenv]
5 commands = py.test tests 5 commands = py.test tests
6 deps = 6 deps =
7 pytest 7 pytest
8 8
9 # This environment is for checking code quality: test coverage, PEP8, etc. 9 # This environment is for checking code quality: test coverage, PEP8, etc.
10 # We have to install our package in development mode so that pytest-cov can 10 # We have to install our package in development mode so that pytest-cov can
11 # find .coverage file. 11 # find the .coverage file.
Sebastian Noack 2016/03/16 00:18:41 Typo: "can find the .coverage file."
Vasily Kuznetsov 2016/03/16 13:47:15 I'm not a native speaker but my intuition was that
12 [testenv:qa] 12 [testenv:qa]
13 commands = 13 commands =
14 py.test --cov=abp tests 14 py.test --cov=abp tests
15 flake8 abp tests setup.py 15 flake8 abp tests setup.py
16 deps = 16 deps =
17 pytest
18 pytest-cov 17 pytest-cov
19 flake8 18 flake8
20 usedevelop = true 19 usedevelop = true
LEFTRIGHT

Powered by Google App Engine
This is Rietveld