From 04484f5c52732568edbfefc10f87ddfc02560249 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 1 Jul 2020 18:22:00 +0200 Subject: [PATCH] tests: enforce pytest-rerunfailures version This commit enforces the pytest-rerunfailures installed so it's <9.0 This is to avoid the following error: ``` ERROR: pytest-rerunfailures 9.0 has requirement pytest>=5.0, but you'll have pytest 4.6.11 which is incompatible. ``` latest version of pytest-rerunfailures isn't compatible with the version of pytest we are using. Signed-off-by: Guillaume Abrioux (cherry picked from commit 19097026fbda71752a500119b0c99c1a9f8d523d) --- tests/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/requirements.txt b/tests/requirements.txt index d79bb55cc..04ada956b 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -8,4 +8,4 @@ Jinja2>=2.10 netaddr mock jmespath -pytest-rerunfailures \ No newline at end of file +pytest-rerunfailures<9.0