pkgs/cli: Move the test folder inside the python module
Move the `tests` folder to `clan_cli/tests`. As we now want part of our tests to live next to the functions that are tested - tests that are not in the `/tests` module also need access to the configured test fixtures that are exposed by the `pytest_plugins` declaration. The following folder structure doesn't support this model: ``` ├── clan_cli │ ├── api │ │ └── api_init_test.py ├── tests/ │ ├── conftest.py │ └── ... ``` Here `api_init_test.py` even when importing the test functions will not have the fixtures configured. There is a way to configure python to import the fixtures from another [`project/module`](https://docs.pytest.org/en/stable/how-to/fixtures.html#using-fixtures-from-other-projects), but this seems to *generally* be discouraged. So moving the `conftest.py` to the toplevel and the `/tests` folder into the toplevel seems to be a sensible choice choice.
This commit is contained in:
committed by
Johannes Kirschbauer
parent
37cc831695
commit
fae630842d
7
pkgs/clan-cli/clan_cli/tests/runtime.py
Normal file
7
pkgs/clan-cli/clan_cli/tests/runtime.py
Normal file
@@ -0,0 +1,7 @@
|
||||
import pytest
|
||||
from clan_cli.async_run import AsyncRuntime
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def runtime() -> AsyncRuntime:
|
||||
return AsyncRuntime()
|
||||
Reference in New Issue
Block a user