aboutsummaryrefslogtreecommitdiffstats
path: root/app/test/fetch/db_fetch
diff options
context:
space:
mode:
Diffstat (limited to 'app/test/fetch/db_fetch')
-rw-r--r--app/test/fetch/db_fetch/test_db_access.py1
-rw-r--r--app/test/fetch/db_fetch/test_db_fetch_aggregate_hosts.py1
-rw-r--r--app/test/fetch/db_fetch/test_db_fetch_aggregates.py1
-rw-r--r--app/test/fetch/db_fetch/test_db_fetch_instances.py1
-rw-r--r--app/test/fetch/db_fetch/test_db_fetch_oteps.py1
-rw-r--r--app/test/fetch/db_fetch/test_db_fetch_vedges_ovs.py1
-rw-r--r--app/test/fetch/db_fetch/test_db_fetch_vedges_vpp.py1
-rw-r--r--app/test/fetch/db_fetch/test_fetch_host_network_agents.py1
8 files changed, 8 insertions, 0 deletions
diff --git a/app/test/fetch/db_fetch/test_db_access.py b/app/test/fetch/db_fetch/test_db_access.py
index ecc26e3..76b7051 100644
--- a/app/test/fetch/db_fetch/test_db_access.py
+++ b/app/test/fetch/db_fetch/test_db_access.py
@@ -17,6 +17,7 @@ from test.fetch.db_fetch.mock_cursor import MockCursor
class TestDbAccess(TestFetch):
def setUp(self):
+ super().setUp()
self.configure_environment()
self.fetcher = DbAccess()
diff --git a/app/test/fetch/db_fetch/test_db_fetch_aggregate_hosts.py b/app/test/fetch/db_fetch/test_db_fetch_aggregate_hosts.py
index 2066577..8fccaf4 100644
--- a/app/test/fetch/db_fetch/test_db_fetch_aggregate_hosts.py
+++ b/app/test/fetch/db_fetch/test_db_fetch_aggregate_hosts.py
@@ -16,6 +16,7 @@ from unittest.mock import MagicMock
class TestDbFetchAggregateHosts(TestFetch):
def setUp(self):
+ super().setUp()
self.configure_environment()
self.fetcher = DbFetchAggregateHosts()
diff --git a/app/test/fetch/db_fetch/test_db_fetch_aggregates.py b/app/test/fetch/db_fetch/test_db_fetch_aggregates.py
index 12693b7..35be9e4 100644
--- a/app/test/fetch/db_fetch/test_db_fetch_aggregates.py
+++ b/app/test/fetch/db_fetch/test_db_fetch_aggregates.py
@@ -16,6 +16,7 @@ from unittest.mock import MagicMock
class TestDbFetchAggregates(TestFetch):
def setUp(self):
+ super().setUp()
self.configure_environment()
self.fetcher = DbFetchAggregates()
diff --git a/app/test/fetch/db_fetch/test_db_fetch_instances.py b/app/test/fetch/db_fetch/test_db_fetch_instances.py
index a1207a1..f1de133 100644
--- a/app/test/fetch/db_fetch/test_db_fetch_instances.py
+++ b/app/test/fetch/db_fetch/test_db_fetch_instances.py
@@ -16,6 +16,7 @@ from test.fetch.db_fetch.test_data.db_fetch_instances import *
class TestDbFetchInstances(TestFetch):
def setUp(self):
+ super().setUp()
self.configure_environment()
self.fetcher = DbFetchInstances()
diff --git a/app/test/fetch/db_fetch/test_db_fetch_oteps.py b/app/test/fetch/db_fetch/test_db_fetch_oteps.py
index 905f55a..7d29622 100644
--- a/app/test/fetch/db_fetch/test_db_fetch_oteps.py
+++ b/app/test/fetch/db_fetch/test_db_fetch_oteps.py
@@ -18,6 +18,7 @@ from unittest.mock import MagicMock
class TestDbFetchOteps(TestFetch):
def setUp(self):
+ super().setUp()
self.configure_environment()
self.fetcher = DbFetchOteps()
self.fetcher.set_env(self.env)
diff --git a/app/test/fetch/db_fetch/test_db_fetch_vedges_ovs.py b/app/test/fetch/db_fetch/test_db_fetch_vedges_ovs.py
index b08aebd..0cfb500 100644
--- a/app/test/fetch/db_fetch/test_db_fetch_vedges_ovs.py
+++ b/app/test/fetch/db_fetch/test_db_fetch_vedges_ovs.py
@@ -16,6 +16,7 @@ from unittest.mock import MagicMock
class TestDbFetchVedgesOvs(TestFetch):
def setUp(self):
+ super().setUp()
self.configure_environment()
self.fetcher = DbFetchVedgesOvs()
self.fetcher.set_env(self.env)
diff --git a/app/test/fetch/db_fetch/test_db_fetch_vedges_vpp.py b/app/test/fetch/db_fetch/test_db_fetch_vedges_vpp.py
index 9e6f497..774603a 100644
--- a/app/test/fetch/db_fetch/test_db_fetch_vedges_vpp.py
+++ b/app/test/fetch/db_fetch/test_db_fetch_vedges_vpp.py
@@ -16,6 +16,7 @@ from unittest.mock import MagicMock
class TestDbFetchVedgesVpp(TestFetch):
def setUp(self):
+ super().setUp()
self.configure_environment()
self.fetcher = DbFetchVedgesVpp()
self.fetcher.set_env(self.env)
diff --git a/app/test/fetch/db_fetch/test_fetch_host_network_agents.py b/app/test/fetch/db_fetch/test_fetch_host_network_agents.py
index fd68a56..cfe4142 100644
--- a/app/test/fetch/db_fetch/test_fetch_host_network_agents.py
+++ b/app/test/fetch/db_fetch/test_fetch_host_network_agents.py
@@ -18,6 +18,7 @@ from unittest.mock import MagicMock
class TestFetchHostNetworkAgents(TestFetch):
def setUp(self):
+ super().setUp()
self.configure_environment()
self.fetcher = DbFetchHostNetworkAgents()