From: Mike Bayer Date: Fri, 20 Sep 2019 18:45:36 +0000 (-0400) Subject: Remove tests_require X-Git-Tag: rel_1_2_1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68ca631575a812f4f36e7521f11f4f351833282d;p=thirdparty%2Fsqlalchemy%2Falembic.git Remove tests_require Removed the "test requirements" from "setup.py test", as this command now only emits a removal error in any case and these requirements are unused. Change-Id: I53a798bdedad88d8f9708ed3fb6d8ed1aa49f526 Fixes: #592 --- diff --git a/docs/build/unreleased/592.rst b/docs/build/unreleased/592.rst new file mode 100644 index 00000000..9f5f3698 --- /dev/null +++ b/docs/build/unreleased/592.rst @@ -0,0 +1,6 @@ +.. change:: + :tags: bug, tests + :tickets: 592 + + Removed the "test requirements" from "setup.py test", as this command now + only emits a removal error in any case and these requirements are unused. diff --git a/setup.py b/setup.py index 52c764ec..7fbf4be6 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,6 @@ setup( license="MIT", packages=find_packages(".", exclude=["examples*", "test*"]), include_package_data=True, - tests_require=["pytest!=3.9.1,!=3.9.2", "mock", "Mako"], cmdclass={"test": UseTox}, zip_safe=False, install_requires=requires,