-
For some cases, we might want the setup of the test to run only once, even when something is multi processed, for example:
We write our end-to-end tests in python using pytest, this means that one …
-
When using [pytest fixtures](https://docs.pytest.org/en/latest/fixture.html), you are supposed to just declare them as input arguments, and they will be automagically loaded. For example:
```python…
-
Allow using dishka container to provide fixtures
-
Opening this issue to begin discussion on how we should handle testing with v2. Currently the unit tests return mocked data and integration tests require containerlab to be spun up.
I propose the …
-
Pytest fixtures have some really powerful features/properties:
- inversion of control (plugins add new functionality)
- dependency injection (fixtures declare their dependencies by fixture name)
…
-
One of the factors slowing down development is that at least one unit test always has to be updated after any change that alters the output. It would help if the procedure for updating the tests was …
-
I am experiencing a weird issue:
'package' scoped fixture will not execute teardown after last test in package is completed if afformentioned fixture is defined outside of package
**Environment**
…
-
The docs explain that one can use the `extras` fixture to add content to the html report, however only some of the extras are added. In the following code:
```
import pytest_html
def test_extra…
-
There is a new kid on the block that should help us find out whether scikit-learn and its dependencies can be reliably considered free-threading compatible:
https://pypi.org/project/pytest-freethre…
-
Hi,
first: thank you for the cool tool, it really helps with faster CI pipelines :)
My request: can you make the split algorithm take pytest dependencys into account? We have same test that depe…