a991fed7e4
This reverts commit a67ed28584
.
The commit breaks OpenStack neutron dynamic routing.
36 lines
829 B
Python
Executable File
36 lines
829 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
|
|
import os
|
|
import sys
|
|
|
|
from nose import config
|
|
from nose import core
|
|
|
|
sys.path.append(os.getcwd())
|
|
sys.path.append(os.path.dirname(__file__))
|
|
|
|
|
|
import ryu.tests.unit
|
|
from ryu.tests.test_lib import run_tests
|
|
|
|
|
|
if __name__ == '__main__':
|
|
exit_status = False
|
|
|
|
# if a single test case was specified,
|
|
# we should only invoked the tests once
|
|
invoke_once = len(sys.argv) > 1
|
|
|
|
cwd = os.getcwd()
|
|
c = config.Config(stream=sys.stdout,
|
|
env=os.environ,
|
|
verbosity=int(os.environ.get('NOSE_VERBOSE', 3)),
|
|
includeExe=True,
|
|
traverseNamespace=True,
|
|
plugins=core.DefaultPluginManager())
|
|
c.configureWhere(ryu.tests.unit.__path__)
|
|
|
|
exit_status = run_tests(c)
|
|
sys.exit(exit_status)
|