diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-17 20:11:45 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-03-17 20:11:45 +0100 |
commit | 72935e74bf426575c51cde125378a3fe24e1316b (patch) | |
tree | fc7f957d2a570893ea3cf3de1a10b7589cdc5045 /smoketest | |
parent | 6f6cd6552384704700f08e9367e167796b1f7fde (diff) | |
download | vyos-1x-72935e74bf426575c51cde125378a3fe24e1316b.tar.gz vyos-1x-72935e74bf426575c51cde125378a3fe24e1316b.zip |
smoketest: remove failfast=True as debug leftover
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_tunnel.py | 2 | ||||
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_ospf.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_tunnel.py b/smoketest/scripts/cli/test_interfaces_tunnel.py index 39560ceda..6af31ddff 100755 --- a/smoketest/scripts/cli/test_interfaces_tunnel.py +++ b/smoketest/scripts/cli/test_interfaces_tunnel.py @@ -233,4 +233,4 @@ class TunnelInterfaceTest(BasicInterfaceTest.TestCase): self.assertEqual(new_remote, conf['linkinfo']['info_data']['remote']) if __name__ == '__main__': - unittest.main(verbosity=2, failfast=True) + unittest.main(verbosity=2) diff --git a/smoketest/scripts/cli/test_protocols_ospf.py b/smoketest/scripts/cli/test_protocols_ospf.py index 7357c94a1..385f50918 100755 --- a/smoketest/scripts/cli/test_protocols_ospf.py +++ b/smoketest/scripts/cli/test_protocols_ospf.py @@ -319,4 +319,4 @@ class TestProtocolsOSPF(VyOSUnitTestSHIM.TestCase): if __name__ == '__main__': - unittest.main(verbosity=2, failfast=True) + unittest.main(verbosity=2) |