diff options
author | 2024-08-19 18:47:55 -0400 | |
---|---|---|
committer | 2024-08-22 07:35:40 +0000 | |
commit | 85ce93160fa71c5e6fb9140704c07e6d8989889d (patch) | |
tree | cff2524293777a140eece22ab5900d39ca797d9d /test/test_ikev2.py | |
parent | 7301abe9ba2fa75661238b0afece55eeeebce863 (diff) |
tests: fix make test python issues on ubuntu 24.04
- add patch to scapy to use latest six module instead
of the old scapy specific six module which fails to
import moves sub-module on python 3.12
- fix warning for deprecated legacy editable install of vpp_papi
- skip failing testcases on ubuntu-24.04
Type: test
Change-Id: Idc1a008c6e45ba69caa50c2e245012eb05effed7
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test/test_ikev2.py')
-rw-r--r-- | test/test_ikev2.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_ikev2.py b/test/test_ikev2.py index 341556d1294..4bff829c51b 100644 --- a/test/test_ikev2.py +++ b/test/test_ikev2.py @@ -23,8 +23,7 @@ from scapy.utils import long_converter from framework import VppTestCase from asfframework import ( tag_fixme_vpp_workers, - is_distro_ubuntu2204, - is_distro_debian11, + tag_fixme_ubuntu2404, VppTestRunner, ) from vpp_ikev2 import Profile, IDType, AuthMethod @@ -2323,6 +2322,7 @@ class TestResponderRekey(TestResponderPsk): self.assertEqual(r[0].sa.stats.n_rekey_req, 1) +@tag_fixme_ubuntu2404 class TestResponderRekeyRepeat(TestResponderRekey): """test ikev2 responder - rekey repeat""" @@ -2357,6 +2357,7 @@ class TestResponderRekeyKEX(TestResponderRekey): vpp_worker_count = 2 +@tag_fixme_ubuntu2404 class TestResponderRekeyRepeatKEX(TestResponderRekeyRepeat): """test ikev2 responder - rekey repeat with key exchange""" |