X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_vapi.py;h=e010415fe010ba5534567fe17f7d171120434ec1;hb=d6df3acf5cf31b603241574cadbf9863e27b2d60;hp=ebd189cd7c890a1d8b3610975e70f71db24ce8a8;hpb=defde0f87067eb473660794cbd4a2da69fdd191d;p=vpp.git diff --git a/test/test_vapi.py b/test/test_vapi.py index ebd189cd7c8..e010415fe01 100644 --- a/test/test_vapi.py +++ b/test/test_vapi.py @@ -4,14 +4,20 @@ import unittest import os import signal -from framework import VppTestCase, running_extended_tests, \ - running_on_centos, VppTestRunner, Worker +from framework import VppTestCase, running_on_centos, VppTestRunner, Worker -@unittest.skipUnless(running_extended_tests, "part of extended tests") class VAPITestCase(VppTestCase): """ VAPI test """ + @classmethod + def setUpClass(cls): + super(VAPITestCase, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(VAPITestCase, cls).tearDownClass() + def test_vapi_c(self): """ run C VAPI tests """ var = "TEST_DIR"