Devops Cleanup
[osm/devops.git] / test / example / conftest.py
diff --git a/test/example/conftest.py b/test/example/conftest.py
deleted file mode 100644 (file)
index 3798a15..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-import yaml
-
-
-config = None
-with open('config.yaml') as f:
-    config = yaml.load(f)
-
-
-def pytest_addoption(parser):
-    for param in config:
-        parser.addoption("--{}".format(param),
-                         action="store",
-                         type="{}".format(config[param]["type"]),
-                         default="{}".format(config[param]["default"]),
-                         help="{}".format(config[param]["description"])
-                         )
-
-
-def pytest_generate_tests(metafunc):
-    for param in config:
-        if param in metafunc.fixturenames:
-            metafunc.parametrize(param, [metafunc.config.getoption(param)])