From 707fc4603b9d505bda68cf6adf9805882b99d73c Mon Sep 17 00:00:00 2001 From: Bryce Guinta Date: Thu, 25 Jun 2020 15:43:37 -0400 Subject: [PATCH] Add missing test dependency pytest-benchmark to setup.py Without this dependency the test suite fails --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7ceb148009..293c452c07 100644 --- a/setup.py +++ b/setup.py @@ -153,7 +153,7 @@ def install(**kwargs): test_suite="test", python_requires=">=3.5.*", setup_requires=pytest_runner, - tests_require=["pytest"], + tests_require=["pytest", "pytest-benchmark"], project_urls=project_urls, **kwargs )