diff options
Diffstat (limited to 'api/conf.py')
-rw-r--r-- | api/conf.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/api/conf.py b/api/conf.py index 3d9d190a0..a4f332533 100644 --- a/api/conf.py +++ b/api/conf.py @@ -6,6 +6,7 @@ # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## +from __future__ import absolute_import from pyroute2 import IPDB @@ -14,8 +15,6 @@ with IPDB() as ip: GATEWAY_IP = ip.routes['default'].gateway PORT = 8086 -TEST_ACTION = ['runTestCase'] - TEST_CASE_PATH = '../tests/opnfv/test_cases/' SAMPLE_PATH = '../samples/' |