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: Rebase to match the new master and retouche the docstrings. Created Oct. 24, 2017, 4:06 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
« tests/test_render_script.py ('K') | « 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,34 +1,32 @@
[tox]
envlist = py27,py35,py36,pypy,coverage,flake8
-[flake8]
-ignore = D1
-
[testenv]
deps =
pytest
mock
commands =
py.test tests
[testenv:coverage]
deps =
pytest-cov
mock
commands =
- py.test --cov=abp tests
+ py.test --cov=abp --cov-report=term-missing tests
# We have to install our package in development mode
# so that pytest-cov can find the .coverage file.
usedevelop = true
[testenv:flake8]
basepython = python3
skip_install = true
deps =
flake8
flake8-docstrings
pep8-naming
hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake8-eyeo
commands =
- flake8
+ flake8 --ignore=D107 abp
+ flake8 --ignore=D1 tests setup.py
« tests/test_render_script.py ('K') | « tests/test_web_source.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld