diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2019-01-17 17:57:45 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-01-17 17:57:45 -0500 |
commit | 748b307354e3c29252e31c029196002b2bbd6995 (patch) | |
tree | 5e86481c7532adb45947931935cb6e25b79b5b32 | |
parent | f8ff0d0d4657d5f6a638fb90f0d518bd2768aa7b (diff) | |
download | external_python_setuptools-748b307354e3c29252e31c029196002b2bbd6995.tar.gz external_python_setuptools-748b307354e3c29252e31c029196002b2bbd6995.tar.bz2 external_python_setuptools-748b307354e3c29252e31c029196002b2bbd6995.zip |
Pin pytest to <4 for now. Ref #1638.
-rw-r--r-- | tests/requirements.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/requirements.txt b/tests/requirements.txt index 0c6c3e59..d301168a 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -3,7 +3,8 @@ pytest-flake8; python_version!="3.4" pytest-flake8<=1.0.0; python_version=="3.4" virtualenv>=13.0.0 pytest-virtualenv>=1.2.7 -pytest>=3.0.2 +# pytest pinned to <4 due to #1638 +pytest>=3.7,<4 wheel coverage>=4.5.1 pytest-cov>=2.5.1 |