blob: 6d76978a40888412d5ae8d0a32e850f86a7113d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/usr/bin/env python
"""
nose runner script.
Only use this script if setuptools is not available, i.e. such as
on Python 3K. Otherwise consult README.unittests for the
recommended methods of running tests.
"""
import sys
try:
from sqlalchemy_nose.noseplugin import NoseSQLAlchemy
except ImportError:
from os import path
sys.path.append(path.join(path.dirname(path.abspath(__file__)), 'lib'))
from sqlalchemy_nose.noseplugin import NoseSQLAlchemy
import nose
if __name__ == '__main__':
py3k = getattr(sys, 'py3kwarning', False) or sys.version_info >= (3, 0)
if py3k:
# this version breaks verbose output,
# but is the only API that nose3 currently supports
nose.main(plugins=[NoseSQLAlchemy()])
else:
# this is the "correct" API
nose.main(addplugins=[NoseSQLAlchemy()])
|