summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Bridon <bochecha@daitauha.fr>2017-09-20 10:20:01 +0200
committerMathieu Bridon <bochecha@daitauha.fr>2017-09-20 10:21:37 +0200
commit0a4f05f6a0486d6a58a83d50e9b607ddb747befe (patch)
tree083ab5277f61240013581fe4ad53282fb59df7c1
parent7aba0bfc906409073c4d246ec009a8622551726a (diff)
downloadbuildstream-0a4f05f6a0486d6a58a83d50e9b607ddb747befe.tar.gz
Specify the minimum required version of pytest
A previous change introduced the usage of pytest.param to our test suite in commit 7aba0bfc906409073c4d246ec009a8622551726a. This was only added to pytest 3.1.0, and the tests can't work with older versions.
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6957e7d4e..a7cfc21d1 100755
--- a/setup.py
+++ b/setup.py
@@ -146,5 +146,5 @@ setup(name='BuildStream',
'pytest-env',
'pytest-pep8',
'pytest-cov',
- 'pytest'],
+ 'pytest >= 3.1.0'],
zip_safe=False)