|
1234567891011121314151617181920212223242526272829303132333435363738 |
- from contextlib import ExitStack
- from typing import Optional
- from pathlib import Path
- import shutil
-
- import pytest
-
- from tests import scoped_dds, DDSFixtureParams
-
-
- @pytest.yield_fixture
- def dds(request, tmp_path: Path, worker_id: str, scope: ExitStack):
- test_source_dir = Path(request.fspath).absolute().parent
- test_root = test_source_dir
-
- # If we are running in parallel, use a unique directory as scratch
- # space so that we aren't stomping on anyone else
- if worker_id != 'master':
- test_root = tmp_path / request.function.__name__
- shutil.copytree(test_source_dir, test_root)
-
- project_dir = test_root / 'project'
- # Check if we have a special configuration
- if hasattr(request, 'param'):
- assert isinstance(request.param, DDSFixtureParams), \
- ('Using the `dds` fixture requires passing in indirect '
- 'params. Use @dds_fixture_conf to configure the fixture')
- params: DDSFixtureParams = request.param
- project_dir = test_root / params.subdir
-
- # Create the instance. Auto-clean when we're done
- yield scope.enter_context(scoped_dds(test_root, project_dir, request.function.__name__))
-
-
- @pytest.fixture
- def scope():
- with ExitStack() as scope:
- yield scope
|