summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-21 01:41:41 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-21 01:45:02 +0900
commitffbb4de7bac01a8d33ff4aec11e7fe74dbfb7131 (patch)
tree382946db9e4a01663508820f91043d0091ca8850
parent1f39c63ca8f18291b43ad0dd0a007e3951b0557d (diff)
downloadbuildstream-ffbb4de7bac01a8d33ff4aec11e7fe74dbfb7131.tar.gz
setup.py: Pinning coverage down to version 4.2
Seeing random crashes with 4.4.2, these are solved by simply using version 4.2. Need to investigate and report proper bug to upstream for this.
-rwxr-xr-xsetup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index cdfe4c29a..4d06c87f7 100755
--- a/setup.py
+++ b/setup.py
@@ -175,7 +175,9 @@ setup(name='BuildStream',
entry_points=bst_install_entry_points,
setup_requires=['pytest-runner', 'setuptools_scm'],
tests_require=['pep8',
- 'coverage',
+ # Pin coverage to 4.2 for now, we're experiencing
+ # random crashes with 4.4.2
+ 'coverage == 4.2',
'pytest-datafiles',
'pytest-env',
'pytest-pep8',