diff options
author | Chandan Singh <csingh43@bloomberg.net> | 2019-11-13 13:25:58 +0000 |
---|---|---|
committer | Chandan Singh <csingh43@bloomberg.net> | 2019-11-13 13:43:55 +0000 |
commit | 405817480a3aab3440086a2d366e5249a2dc107a (patch) | |
tree | 158cb9930de2a438b5d18dc682146945e8a29981 /tox.ini | |
parent | 11e509914e0f10f675175255d316cf1589c9e2ef (diff) | |
download | buildstream-405817480a3aab3440086a2d366e5249a2dc107a.tar.gz |
tox.ini: Fix pylint configuration
Running it like `src/buildstream` apparently doesn't report the warnings
correctly, as pylint does not like file paths.
Fixes #1206.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ commands_pre = commands = pycodestyle {posargs} - pylint {posargs: src/buildstream tests} + pylint {posargs: src tests} deps = -rrequirements/requirements.txt -rrequirements/dev-requirements.txt |