diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-12-15 08:51:14 +0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-12-14 19:22:40 -0800 |
commit | a7bf79aeecf45c243c308591cd3551087ea793d7 (patch) | |
tree | 2be63073158545f2ef741594c80d172e6eb00b73 /dev-requirements.txt | |
parent | 47bb9cec25d41c2bd8ce5030168acf4483234c5c (diff) |
pin pytest-xdist to < 1.25.0
1.25.0 requires pytest >=3.6, but pytest-relaxed doesn't support pytest >3.2.x. This temporary pin can work around that issue. Without this the test suite is broken (although ultimately pytest-relaxed should be updated to support newer pytest)
Diffstat (limited to 'dev-requirements.txt')
-rw-r--r-- | dev-requirements.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dev-requirements.txt b/dev-requirements.txt index b4829cb3..2034b4b1 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -3,7 +3,9 @@ invoke>=1.0,<2.0 invocations>=1.2.0,<2.0 # NOTE: pytest-relaxed currently only works with pytest >=3, <3.3 pytest>=3.2,<3.3 -pytest-relaxed==1.1.2 +pytest-relaxed==1.1.4 +# pytest-xdist for test dir watching and the inv guard task +pytest-xdist>=1.22,<1.25.0 mock==2.0.0 # Linting! flake8==2.4.0 |