From 191ad84cef0b37e8d8a708812336858d447304c5 Mon Sep 17 00:00:00 2001 From: Lorenz Diener Date: Thu, 2 Aug 2018 15:55:02 +0200 Subject: [PATCH] Move pytest-runner to test_deps --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1969a90..e49c26c 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -test_deps = ['pytest', 'pytest-cov', 'vcrpy', 'pytest-vcr', 'pytest-mock'] +test_deps = ['pytest', 'pytest-runner', 'pytest-cov', 'vcrpy', 'pytest-vcr', 'pytest-mock'] extras = { "test": test_deps } @@ -9,7 +9,6 @@ setup(name='Mastodon.py', version='1.3.1', description='Python wrapper for the Mastodon API', packages=['mastodon'], - setup_requires=['pytest-runner'], install_requires=[ 'requests', 'python-dateutil',