diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-10-21 02:15:53 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-10-21 02:15:53 +0900 |
commit | 316e05ca59ae6dd27647ff5586ee2b192fb58b4e (patch) | |
tree | fd80c0bf0aebd61b96b03b3b5ce84483932ddb08 /setup.cfg | |
parent | 15ff5f40219387566dfeba52727d4f1c656d08a1 (diff) | |
download | buildstream-316e05ca59ae6dd27647ff5586ee2b192fb58b4e.tar.gz |
setup.cfg: Ignore .eggs directory for pep8 linter
For some reason, an undesired .eggs/ directory gets created
at times by the incomprehensible pip/setuptools machinery.
This makes sure it doesnt cause noise in our tests.
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -14,5 +14,6 @@ pep8ignore = */lib/python3* ALL */bin/* ALL buildstream/_fuse/fuse.py ALL + .eggs/* ALL env = D:BST_TEST_SUITE=True |