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

Side by Side Diff: tox.ini

Issue 29338156: Issue 3754 - Initial setup of the python-abp repo. (Closed)
Patch Set: Update ignore files, describe testing in README.md and fix a typo in tox.ini. Created March 16, 2016, 3:56 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« setup.py ('K') | « tests/test_line_parsing.py ('k') | 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
(Empty)
1 [tox]
2 envlist = py27, py35, pypy, qa
3
4 [testenv]
5 commands = py.test tests
6 deps =
7 pytest
8
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
11 # find the .coverage file.
12 [testenv:qa]
13 commands =
14 py.test --cov=abp tests
15 flake8 abp tests setup.py
16 deps =
17 pytest
Sebastian Noack 2016/03/16 16:03:59 IIRC, dependencies are inherited from testenv here
Vasily Kuznetsov 2016/03/16 16:29:35 It works without this line although I'm not sure i
18 pytest-cov
19 flake8
20 usedevelop = true
OLDNEW
« setup.py ('K') | « tests/test_line_parsing.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld