summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_interfaces_tunnel.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-01-12 20:53:40 +0100
committerChristian Poessinger <christian@poessinger.com>2021-01-12 21:24:34 +0100
commit0377085171f83b5ca6f4099350eb2e849c496945 (patch)
tree751c7e030fac9003a814ba811089c94dbf91fafd /smoketest/scripts/cli/test_interfaces_tunnel.py
parent96e86c57c97e391e130fb3a971bf82de0efa59cd (diff)
downloadvyos-1x-0377085171f83b5ca6f4099350eb2e849c496945.tar.gz
vyos-1x-0377085171f83b5ca6f4099350eb2e849c496945.zip
smoketest: interface: enable ip/ipv6 tests on additional interfaces
(cherry picked from commit 910919d856d790ff8905d513c280fdf12f8892ef)
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_tunnel.py')
-rwxr-xr-xsmoketest/scripts/cli/test_interfaces_tunnel.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_tunnel.py b/smoketest/scripts/cli/test_interfaces_tunnel.py
index 6115f0a07..f67b813af 100755
--- a/smoketest/scripts/cli/test_interfaces_tunnel.py
+++ b/smoketest/scripts/cli/test_interfaces_tunnel.py
@@ -63,6 +63,7 @@ def tunnel_conf(interface):
class TunnelInterfaceTest(BasicInterfaceTest.BaseTest):
def setUp(self):
self._test_ip = True
+ self._test_ipv6 = True
self._test_mtu = True
self._base_path = ['interfaces', 'tunnel']
self.local_v4 = '192.0.2.1'
@@ -203,4 +204,4 @@ class TunnelInterfaceTest(BasicInterfaceTest.BaseTest):
self.session.commit()
if __name__ == '__main__':
- unittest.main(verbosity=2, failfast=True)
+ unittest.main(verbosity=2)