diff options
author | 2016-01-27 14:11:05 +0200 | |
---|---|---|
committer | 2016-01-27 14:11:05 +0200 | |
commit | 1a9b06836031bb776e268314aefcced1e8b01afb (patch) | |
tree | f35c38c9620f67a9ef290a913e3b7200fdb5bc36 | |
parent | c581c5bb6314b5f80d315c23354f8866ed2a71ff (diff) |
assing attribute 'requires_client' to CStlBasic_Test
-rw-r--r-- | scripts/automation/regression/unit_tests/functional_tests/stl_basic_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/automation/regression/unit_tests/functional_tests/stl_basic_tests.py b/scripts/automation/regression/unit_tests/functional_tests/stl_basic_tests.py index 125866ba..ae7228cd 100644 --- a/scripts/automation/regression/unit_tests/functional_tests/stl_basic_tests.py +++ b/scripts/automation/regression/unit_tests/functional_tests/stl_basic_tests.py @@ -5,6 +5,7 @@ import functional_general_test from nose.tools import assert_equal from nose.tools import assert_not_equal from nose.tools import nottest +from nose.plugins.attrib import attr from unit_tests.trex_general_test import CTRexScenario from dpkt import pcap @@ -13,6 +14,7 @@ import os import subprocess # should be set to run explicitly, not as part of all regression tests +@attr('requires_client') class CStlBasic_Test(functional_general_test.CGeneralFunctional_Test): def setUp (self): self.test_path = os.path.abspath(os.getcwd()) |