diff options
author | zhihui wu <wu.zhihui1@zte.com.cn> | 2017-01-11 01:16:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-11 01:16:55 +0000 |
commit | 5999f4ede4694a7fbe14177f7d4a07341137e300 (patch) | |
tree | 7f28cd74afb9ee0223424cfbfc7c95d10436a16c /tests/conftest.py | |
parent | 5a93fcd8dcf3ac350b5a207912d9ce62783c1ab6 (diff) | |
parent | decad5f7fdb212c4f78fc31f00e591eaba104450 (diff) |
Merge "Add module skeletons"
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 8e2ecf7c..f1ec91fb 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -10,6 +10,8 @@ from os import path import pytest +from qtip.runner.plan import Plan + @pytest.fixture(scope='session') def data_root(): @@ -19,3 +21,8 @@ def data_root(): @pytest.fixture(scope='session') def benchmarks_root(data_root): return path.join(data_root, 'benchmarks') + + +@pytest.fixture(scope='session') +def plan(benchmarks_root): + return Plan('fake-plan.yaml', [benchmarks_root]) |