diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-26 15:11:43 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-26 15:11:43 +0900 |
commit | d3a991a53121dee2b6a3af1343fc0b9901420f01 (patch) | |
tree | 6daee97d0bde15a4e4db604d5b30a315bfdfd184 /setup.py | |
parent | 78ad3b773672475e81c27d69954f6e1ff6528ae5 (diff) | |
download | buildstream-d3a991a53121dee2b6a3af1343fc0b9901420f01.tar.gz |
setup.py: Stop installing test cases.
As recommended by Valentin David in issue #332.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -215,7 +215,7 @@ setup(name='BuildStream', description='A framework for modelling build pipelines in YAML', license='LGPL', - packages=find_packages(), + packages=find_packages(exclude=('tests', 'tests.*')), package_data={'buildstream': ['plugins/*/*.py', 'plugins/*/*.yaml', 'data/*.yaml', 'data/*.sh.in']}, data_files=[ |