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

Unified Diff: tox.ini

Issue 29465720: Issue 4970 - Document the library API of python-abp (Closed)
Patch Set: Improve the docstrings and help() behavior, shorten the README, add Development documentation and a… Created Oct. 10, 2017, 4:25 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/test_web_source.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tox.ini
===================================================================
--- a/tox.ini
+++ b/tox.ini
@@ -1,24 +1,27 @@
[tox]
-envlist = py27, py35, py36, pypy, coverage
+envlist = py27, py35, py36, pypy, qa
[testenv]
-commands =
- py.test tests
- flake8 abp tests setup.py
deps =
pytest
mock
- flake8
- pep8-naming
- hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake8-eyeo
+commands =
+ pytest tests
-[testenv:coverage]
-commands =
- py.test --cov=abp tests
+[testenv:qa]
+basepython = python3
deps =
pytest-cov
mock
+ flake8
+ flake8-docstrings
+ pep8-naming
+ hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake8-eyeo
+commands =
+ pytest --cov=abp --cov-report=term-missing tests
+ flake8 --ignore=D107 abp
+ flake8 --ignore=D1 tests setup.py
-# We have to install our package in development mode
+# We have to install the package in development mode
# so that pytest-cov can find the .coverage file.
usedevelop = true
« no previous file with comments | « tests/test_web_source.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld