From 6796bb99573f15c77a007434feabb30291ac1670 Mon Sep 17 00:00:00 2001 From: itraviv Date: Thu, 18 Aug 2016 15:23:01 +0300 Subject: scapy_server_test: skiping python3 tests scapy_service.py: minor changes to protocol_struct function zmq_client: added zmq_server: minor changes in exception handling --- scripts/automation/regression/functional_tests/scapy_server_test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scripts/automation/regression/functional_tests') diff --git a/scripts/automation/regression/functional_tests/scapy_server_test.py b/scripts/automation/regression/functional_tests/scapy_server_test.py index c0651f69..ea3ec0da 100755 --- a/scripts/automation/regression/functional_tests/scapy_server_test.py +++ b/scripts/automation/regression/functional_tests/scapy_server_test.py @@ -1,13 +1,15 @@ # scapy server unit test import sys,os +from nose.plugins.skip import SkipTest +if sys.version_info.major == 3: + raise SkipTest("Python3 currently not supported") scapy_server_path = os.path.abspath(os.path.join(os.pardir, 'trex_control_plane', 'stl', 'services','scapy_server')) stl_pathname = os.path.abspath(os.path.join(os.pardir, os.pardir, 'trex_control_plane','stl')) sys.path.append(scapy_server_path) sys.path.append(stl_pathname) -#import stl_path import trex_stl_lib from trex_stl_lib.api import * from copy import deepcopy -- cgit 1.2.3-korg