summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-07-20 20:50:17 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-07-20 20:52:00 +0900
commit0ddbf0e0d0ecb69d3ae830740295e757e38eeddf (patch)
treec5b25713f84b7acbe24fa23add34e6c9b780c188
parent9c1f024b15849fae1d8512c0215e4fb0b24fc311 (diff)
downloadbuildstream-0ddbf0e0d0ecb69d3ae830740295e757e38eeddf.tar.gz
setup.py: Specify minimum required version of pytest-cov plugin
This causes the new artifact tests to pass (unless you happened to already have a recent enough version of pytest-cov, in which case you didn't notice the breakage).
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 615f8ca9f..0be02dfa1 100755
--- a/setup.py
+++ b/setup.py
@@ -269,7 +269,7 @@ setup(name='BuildStream',
'pytest-env',
'pytest-pep8',
'pytest-pylint',
- 'pytest-cov',
+ 'pytest-cov >= 2.5.0',
# Provide option to run tests in parallel, less reliable
'pytest-xdist',
'pytest >= 3.1.0',