aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_bihash.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_bihash.py')
-rw-r--r--test/test_bihash.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_bihash.py b/test/test_bihash.py
index 04b1b4f635a..ac8bab37a7d 100644
--- a/test/test_bihash.py
+++ b/test/test_bihash.py
@@ -2,7 +2,7 @@
import unittest
-from framework import VppTestCase, VppTestRunner
+from framework import VppTestCase, VppTestRunner, running_gcov_tests
from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath
@@ -50,6 +50,7 @@ class TestBihash(VppTestCase):
self.logger.critical(error)
self.assertNotIn('failed', error)
+ @unittest.skipUnless(running_gcov_tests, "part of code coverage tests")
def test_bihash_coverage(self):
""" Improve Code Coverage """
@@ -60,6 +61,5 @@ class TestBihash(VppTestCase):
self.logger.critical(error)
self.assertNotIn('failed', error)
-
if __name__ == '__main__':
unittest.main(testRunner=VppTestRunner)