diff options
author | Klement Sekera <ksekera@cisco.com> | 2018-02-21 11:13:39 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2018-02-21 16:36:17 +0000 |
commit | fa5fb2d162b0b88d8c59bf2664224948956e4ac4 (patch) | |
tree | da4a740f38552194df799fff9f037c4729e538d2 | |
parent | 237d5aa0bf4f4898ebe18891e16f264fdcd3d61d (diff) |
make test: disable broken kubeproxy tests
Change-Id: I8de2594596053a7331c81b342c63df2358548ca3
Signed-off-by: Klement Sekera <ksekera@cisco.com>
-rw-r--r-- | test/test_kubeproxy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_kubeproxy.py b/test/test_kubeproxy.py index 2398802b362..76e2ec91ceb 100644 --- a/test/test_kubeproxy.py +++ b/test/test_kubeproxy.py @@ -148,7 +148,7 @@ class TestKP(VppTestCase): self.vapi.cli("ku vip 90.0.0.0/8 nat4 del") self.vapi.cli("test kube-proxy flowtable flush") - @unittest.skipUnless(running_extended_tests(), "part of extended tests") + @unittest.skip("this test is broken") def test_kp_ip6_nat4(self): """ Kube-proxy NAT64 """ @@ -168,7 +168,7 @@ class TestKP(VppTestCase): self.vapi.cli("ku vip 2001::/16 nat4 del") self.vapi.cli("test kube-proxy flowtable flush") - @unittest.skipUnless(running_extended_tests(), "part of extended tests") + @unittest.skip("this test is broken") def test_kp_ip4_nat6(self): """ Kube-proxy NAT46 """ try: |