From 72413a4640e458690cf65f445bc10f28886f4e8f Mon Sep 17 00:00:00 2001 From: Thomas Duval Date: Mon, 22 Jan 2018 15:51:03 +0100 Subject: Functional tests development Change-Id: I641522d813f171a4eed0e6b39b2f25cc470c76d1 --- moon_manager/tests/functional_pod/conftest.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 moon_manager/tests/functional_pod/conftest.py (limited to 'moon_manager/tests/functional_pod/conftest.py') diff --git a/moon_manager/tests/functional_pod/conftest.py b/moon_manager/tests/functional_pod/conftest.py new file mode 100644 index 00000000..b5811755 --- /dev/null +++ b/moon_manager/tests/functional_pod/conftest.py @@ -0,0 +1,12 @@ +import pytest + +print("ANALYSING CONFTEST") + + +@pytest.fixture +def context(): + print("CREATING CONTEXT") + yield { + "hostname": "manager", + "port": 8082, + } -- cgit 1.2.3-korg