summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-02-09 13:02:40 +0100
committerChristian Poessinger <christian@poessinger.com>2020-02-09 13:02:40 +0100
commitc033c77b487caeb9505217232add571f362f7afe (patch)
tree3beac2494ced2d9d5029679d4a670c6e1dc4480b /scripts
parent6c2a6e0153ea36e5690661f0dec634322352f21a (diff)
downloadvyos-1x-c033c77b487caeb9505217232add571f362f7afe.tar.gz
vyos-1x-c033c77b487caeb9505217232add571f362f7afe.zip
all: delete session in tearDown()
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/cli/test_interfaces.py2
-rwxr-xr-xscripts/cli/test_system_login.py1
-rwxr-xr-xscripts/cli/test_system_nameserver.py3
3 files changed, 6 insertions, 0 deletions
diff --git a/scripts/cli/test_interfaces.py b/scripts/cli/test_interfaces.py
index ad8e653ce..1b775e1fe 100755
--- a/scripts/cli/test_interfaces.py
+++ b/scripts/cli/test_interfaces.py
@@ -35,6 +35,8 @@ class BasicInterfaceTest:
self.session.delete(self._base_path)
self.session.commit()
+ del self.session
+
def test_add_description(self):
""" Check if description can be added to interface """
for intf in self._interfaces:
diff --git a/scripts/cli/test_system_login.py b/scripts/cli/test_system_login.py
index aa26b3bec..88e5695e7 100755
--- a/scripts/cli/test_system_login.py
+++ b/scripts/cli/test_system_login.py
@@ -37,6 +37,7 @@ class TestSystemLogin(unittest.TestCase):
self.session.delete(base_path + ['user', user])
self.session.commit()
+ del self.session
def test_user(self):
""" Check if user can be created and we can SSH to localhost """
diff --git a/scripts/cli/test_system_nameserver.py b/scripts/cli/test_system_nameserver.py
index eba8acd80..07fc9494b 100755
--- a/scripts/cli/test_system_nameserver.py
+++ b/scripts/cli/test_system_nameserver.py
@@ -37,10 +37,13 @@ class TestSystemNameServer(unittest.TestCase):
env = self.session.get_session_env()
self.config = Config(session_env=env)
+ def tearDown(self):
# Delete existing name servers
self.session.delete(base_path)
self.session.commit()
+ del self.session
+
def test_add_server(self):
""" Check if server is added to resolv.conf """
for s in test_servers: