diff options
author | Alexandru Fazakas <alexandru.fazakas@codethink.co.uk> | 2019-07-30 10:48:05 +0100 |
---|---|---|
committer | Alexandru Fazakas <alexandru.fazakas@codethink.co.uk> | 2019-07-30 10:49:06 +0100 |
commit | 21004c785c6987743890d1212ed4c24ea4f18fd2 (patch) | |
tree | 59ff13ac1c90d6a7490b1f5c27532286417d0db0 /tox.ini | |
parent | 8f505e641f21e042cb445acebe2993005f3311bc (diff) | |
download | buildstream-21004c785c6987743890d1212ed4c24ea4f18fd2.tar.gz |
tox.ini: Allow linter to run on target files
Currently the linter can only lint everything we want. With
this change, it should be able to only lint onre (or more) files.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -90,8 +90,8 @@ commands_pre = {envpython} setup.py build_ext --inplace commands = - pycodestyle - pylint src/buildstream tests + pycodestyle {posargs} + pylint {posargs: src/buildstream tests} deps = -rrequirements/requirements.txt -rrequirements/dev-requirements.txt |