X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_vom.py;h=a27d5310f521048fa05b8514c0479b9460f6cbbf;hb=6c92f5babdc3c52cf343509fc9cf9d8a9a3df390;hp=6aba555a9c95d6e5cd6afe857fa51108b432e61a;hpb=b8c72a4a8d8bd330ab62dc0c9461cac2b137575b;p=vpp.git diff --git a/test/test_vom.py b/test/test_vom.py index 6aba555a9c9..a27d5310f52 100644 --- a/test/test_vom.py +++ b/test/test_vom.py @@ -8,10 +8,18 @@ from framework import VppTestCase, running_extended_tests, \ VppTestRunner, Worker -@unittest.skipUnless(running_extended_tests(), "part of extended tests") +@unittest.skipUnless(running_extended_tests, "part of extended tests") class VOMTestCase(VppTestCase): """ VPP Object Model Test """ + @classmethod + def setUpClass(cls): + super(VOMTestCase, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(VOMTestCase, cls).tearDownClass() + def test_vom_cpp(self): """ run C++ VOM tests """ var = "TEST_DIR"