From f657691e5bd1d636bcce88315955e60d4c1046b7 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver <thomas@kluyver.me.uk> Date: Wed, 24 Feb 2021 12:29:27 +0000 Subject: [PATCH] pytest-asyncio needs a newer version of pytest --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cc359a71f..8d54b948e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,5 +8,5 @@ pytest: stage: test script: - python3 -m pip install --user -r requirements.txt - - python3 -m pip install --user pytest pytest-asyncio testpath + - python3 -m pip install --user pytest>=5.4.0 pytest-asyncio testpath - pytest -vv tests/test_* -- GitLab