aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.cfg2
-rw-r--r--sfc/tests/functest/run_sfc_tests.py8
2 files changed, 0 insertions, 10 deletions
diff --git a/setup.cfg b/setup.cfg
index 8e5f6230..edeeb5de 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -5,5 +5,3 @@ home-page = https://wiki.opnfv.org/display/sfc/Service+Function+Chaining+Home
[files]
packages = sfc
-scripts =
- sfc/tests/functest/run_sfc_tests.py
diff --git a/sfc/tests/functest/run_sfc_tests.py b/sfc/tests/functest/run_sfc_tests.py
index f779e2a3..a22d5fb2 100644
--- a/sfc/tests/functest/run_sfc_tests.py
+++ b/sfc/tests/functest/run_sfc_tests.py
@@ -11,7 +11,6 @@
import importlib
import os
import time
-import sys
import yaml
from xtesting.core import testcase
@@ -185,10 +184,3 @@ class SfcFunctest(testcase.TestCase):
return testcase.TestCase.EX_OK
return testcase.TestCase.EX_RUN_ERROR
-
-
-if __name__ == '__main__':
- logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(name)s'
- '- %(levelname)s - %(message)s')
- SFC = SfcFunctest()
- sys.exit(SFC.run())