From 9a6709f0f98a50e2969e0332cf10808caa811f08 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 19 Jan 2020 22:33:23 +0900 Subject: [PATCH] Test with pytest-5.3.2 It seems our CI build has been broken since pytest-5.3.3. This pins it to 5.3.2 to fix it temporarily. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a5dd04b0a..55578350f 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ extras_require = { 'sphinxcontrib-websupport', ], 'test': [ - 'pytest', + 'pytest < 5.3.3', 'pytest-cov', 'html5lib', 'flake8>=3.5.0',