From ed87bcb54dc4a1470c2d882bcdb559382997b995 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Feb 2021 19:45:55 +0100 Subject: [PATCH] Remove pytest-runner --- requirements_dev.txt | 1 - setup.py | 3 --- 2 files changed, 4 deletions(-) diff --git a/requirements_dev.txt b/requirements_dev.txt index 21c24a3..d6f623f 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -9,7 +9,6 @@ Click==7.0 pytest==6.2.1 pytest-asyncio==0.14.0 pytest-env==0.6.2 -pytest-runner==5.2 pytest-mock==3.4.0 pytest-cov==2.10.1 bleak==0.10.0 diff --git a/setup.py b/setup.py index c1fce4d..ed6012f 100644 --- a/setup.py +++ b/setup.py @@ -14,8 +14,6 @@ 'bleak>=0.10.0', ] -setup_requirements = ['pytest-runner', ] - test_requirements = ['pytest>=3', ] setup( @@ -46,7 +44,6 @@ keywords='pyzerproc', name='pyzerproc', packages=find_packages(include=['pyzerproc', 'pyzerproc.*']), - setup_requires=setup_requirements, test_suite='tests', tests_require=test_requirements, url='https://github.com/emlove/pyzerproc',