diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2015-09-22 16:09:10 +0100 |
---|---|---|
committer | Stephen Finucane <stephen.finucane@intel.com> | 2015-10-26 20:44:23 +0000 |
commit | 420b3eaa79f63531a0102fb0003841d82aa93883 (patch) | |
tree | 70135ada65365f355aabfe46a0ce9dc0e2e074f0 | |
parent | abac0990fb9bbf97781aa088b04d761758180044 (diff) | |
download | patchwork-420b3eaa79f63531a0102fb0003841d82aa93883.tar patchwork-420b3eaa79f63531a0102fb0003841d82aa93883.tar.gz |
flake: Restrict flake to the patchwork directory
Right now flake will inspect everything in the root directory. We can
avoid a bit of work, telling it to only look at the patchwork/
directory.
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Acked-by: Stephen Finucane <stephen.finucane@intel.com>
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ passenv = [testenv:pep8] basepython = python2.7 deps = flake -commands = flake8 {posargs} +commands = flake8 {posargs} patchwork [flake8] ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E251,H405 |