From 9b301f18313accd65fea8eec4b77c582e8428097 Mon Sep 17 00:00:00 2001 From: Saugat Pachhai Date: Thu, 30 Jul 2020 18:41:54 +0545 Subject: [PATCH] Use pytest>=6.0.1 pytest 6.0.0 had issue with `pylint`, complaining for `pytest.mark.*` being `not-callable`. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index da84576f16..b90e9b05af 100644 --- a/setup.py +++ b/setup.py @@ -105,9 +105,7 @@ def run(self): tests_requirements = [ "wheel>=0.31.1", # Test requirements: - # https://github.com/pytest-dev/pytest/issues/7558 - # FIXME: pylint complaining for pytest.mark.* on v6.0 - "pytest>=4.6.0,<6.0", + "pytest>=6.0.1", "pytest-docker>=0.7.2", "pytest-timeout>=1.3.3", "pytest-cov>=2.6.1",