diff options
-rw-r--r-- | setup.cfg | 4 | ||||
-rw-r--r-- | sfc/tests/functest/run_sfc_tests.py | 6 |
2 files changed, 10 insertions, 0 deletions
@@ -5,3 +5,7 @@ home-page = https://wiki.opnfv.org/display/sfc/Service+Function+Chaining+Home [files] packages = sfc + +[entry_points] +console_scripts = + run_sfc_tests = sfc.tests.functest.run_sfc_tests:main diff --git a/sfc/tests/functest/run_sfc_tests.py b/sfc/tests/functest/run_sfc_tests.py index a22d5fb2..a9aba67f 100644 --- a/sfc/tests/functest/run_sfc_tests.py +++ b/sfc/tests/functest/run_sfc_tests.py @@ -12,6 +12,7 @@ import importlib import os import time import yaml +import sys from xtesting.core import testcase from opnfv.utils import ovs_logger as ovs_log @@ -184,3 +185,8 @@ class SfcFunctest(testcase.TestCase): return testcase.TestCase.EX_OK return testcase.TestCase.EX_RUN_ERROR + +def main(): + logging.basicConfig(level=logging.INFO) + SFC = SfcFunctest() + sys.exit(SFC.run()) |