From 527248b3893ea117963ffa74859bb303c0f4c4ba Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Tue, 25 Oct 2022 19:03:24 -0700 Subject: [PATCH] Exclude pytest-xdist 3.0.2 (#3356) We're getting warnings like https://github.com/psf/black/actions/runs/3325521041/jobs/5498291478 and I'm not sure how to fix them. I'll open an issue for a long-term solution, but for now avoid 3.0.2 to unbreak CI. --- test_requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_requirements.txt b/test_requirements.txt index 5bc494d..ef61a12 100644 --- a/test_requirements.txt +++ b/test_requirements.txt @@ -1,6 +1,6 @@ coverage >= 5.3 pre-commit pytest >= 6.1.1 -pytest-xdist >= 2.2.1 +pytest-xdist >= 2.2.1, < 3.0.2 pytest-cov >= 2.11.1 tox -- 2.39.2