Run 3rd-party test suites without excess dependences
- each test method is parametrized with ENV_NAME to
get unique names in JUnit reports for different
configurations
Change-Id: I8db671d1687f287dc8ca97782cd7bbdf0eaef988
diff --git a/tcp_tests/fixtures/decapod_fixtures.py b/tcp_tests/fixtures/decapod_fixtures.py
index 8e40b41..0ef8869 100644
--- a/tcp_tests/fixtures/decapod_fixtures.py
+++ b/tcp_tests/fixtures/decapod_fixtures.py
@@ -22,14 +22,15 @@
@pytest.fixture(scope='function')
-def decapod_actions(config, underlay, salt_actions):
+def decapod_actions(config, underlay_actions, salt_actions):
"""Fixture that provides various actions for Decapod
:param config: fixture provides oslo.config
:param underlay: fixture provides underlay manager
:rtype: DecapodManager
"""
- return decapod_manager.DecapodManager(config, underlay, salt_actions)
+ return decapod_manager.DecapodManager(config, underlay_actions,
+ salt_actions)
@pytest.mark.revert_snapshot(ext.SNAPSHOT.decapod_deployed)