forked from orbit-oss/flask
Split up testsuite and moved it to flask.testsuite. This fixes #246
This commit is contained in:
parent
85ed1bf058
commit
4cb6eea8f1
42 changed files with 2575 additions and 2336 deletions
8
setup.py
8
setup.py
|
|
@ -77,12 +77,6 @@ class run_audit(Command):
|
|||
else:
|
||||
print ("No problems found in sourcecode.")
|
||||
|
||||
def run_tests():
|
||||
import os, sys
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), 'tests'))
|
||||
from flask_tests import suite
|
||||
return suite()
|
||||
|
||||
|
||||
setup(
|
||||
name='Flask',
|
||||
|
|
@ -112,5 +106,5 @@ setup(
|
|||
'Topic :: Software Development :: Libraries :: Python Modules'
|
||||
],
|
||||
cmdclass={'audit': run_audit},
|
||||
test_suite='__main__.run_tests'
|
||||
test_suite='flask.testsuite.suite'
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue