From 5e75b1b574dd7ee991ca2fae0b2ccd63a0f98d81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Gmach?= Date: Thu, 25 Mar 2021 00:22:17 +0100 Subject: [PATCH] Use unittest testrunner (#397) --- setup.py | 4 ---- tox.ini | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 2ed4266..2a1cbfd 100644 --- a/setup.py +++ b/setup.py @@ -28,15 +28,11 @@ 'Flask-SQLAlchemy>=1.0', 'alembic>=0.7' ], - tests_require=[ - 'Flask-Script>=0.6' - ], entry_points={ 'flask.commands': [ 'db=flask_migrate.cli:db' ], }, - test_suite="tests", classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', diff --git a/tox.ini b/tox.ini index 48ca1f7..e273785 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ python = deps= flask-script commands= - python setup.py test + python -m unittest discover [testenv:flake8] deps=