diff options
author | Klement Sekera <ksekera@cisco.com> | 2018-06-24 22:49:55 +0200 |
---|---|---|
committer | Klement Sekera <ksekera@cisco.com> | 2018-06-24 22:53:37 +0200 |
commit | 31da2e30317bc1fcb4586e1dc0d560600d9b29d3 (patch) | |
tree | 4c025f26e8aa9e4f6499144deea9028154b63fe0 /test/discover_tests.py | |
parent | 2a8d02df15e71881754bab0bb16b85ccd65f8f74 (diff) |
Revert "Revert "ipsec: VPP-1316 calculate IP/TCP/UDP inner checksums""
This reverts commit e0d2bd6bd7fc59c0c6ac48195d7f825dc99bfd91.
Change-Id: If491e16f9ea66b2493a6a7c7f3c684ed585f8f51
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/discover_tests.py')
-rwxr-xr-x | test/discover_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/discover_tests.py b/test/discover_tests.py index eea594107b6..99016e2845e 100755 --- a/test/discover_tests.py +++ b/test/discover_tests.py @@ -30,7 +30,7 @@ def discover_tests(directory, callback): continue if not issubclass(cls, unittest.TestCase): continue - if name == "VppTestCase": + if name == "VppTestCase" or name.startswith("Template"): continue for method in dir(cls): if not callable(getattr(cls, method)): |