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

Unified Diff: patchconv/tox.ini

Issue 29569634: Noissue - Added flake8-docstrings (codingtools) (Closed)
Patch Set: Don't install patchconv in flake8 venv Created Oct. 11, 2017, 3:28 a.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 | « patchconv/patchconv.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: patchconv/tox.ini
===================================================================
--- a/patchconv/tox.ini
+++ b/patchconv/tox.ini
@@ -1,15 +1,24 @@
[tox]
-envlist = py27, py35
+envlist = py27,py35,py36,flake8
+
+[flake8]
+ignore = D1
[testenv]
deps =
pytest
pytest-cov
mock
+commands =
+ py.test --cov=patchconv --cov-report term-missing tests
+
+[testenv:flake8]
+basepython = python3
+skip_install = true
Sebastian Noack 2017/10/11 03:30:44 Since this environment is only for linting, there
+deps =
flake8
+ flake8-docstrings
pep8-naming
../flake8-eyeo
-
commands =
- py.test --cov=patchconv --cov-report term-missing tests
flake8 patchconv.py setup.py tests
« no previous file with comments | « patchconv/patchconv.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld