-
- [ ] Include a detailed description of the bug or suggestion
I took a look at pytest's source code and it looks like pytest records the names of all fixtures with autouse set to True. It then uses t…
-
The example below shows that the `pytest_fixture_post_finalizer` hook is executed n+1 times, where n is the number of fixtures depended upon. From a quick look this seems to be caused by the fact that…
-
If I run the first example, as it is, I get the error:
> fixture 'mocked' not found
However if placed in a class it works:
```
import aiohttp
import asyncio
from aioresponses import aiore…
-
Having a sub-fixture overwriting a higher-level fixture (with the same name) an argument setup as marker is lost for the higher-level fixture. This is tested with latest pytest 3.6.3.
Here an examp…
-
Thank you for pytest-trio! It looks like exactly what I'm looking for - in particular async fixtures. Unfortunately I haven't been able to get it to work at all in what I think should be the simplest …
basak updated
4 years ago
-
https://travis-ci.org/coala/coala/jobs/567291364
```py
$ py.test
Traceback (most recent call last):
File "/home/travis/virtualenv/python3.6.3/bin/py.test", line 7, in
from pytest import …
-
First of all: @nickjmiller thank you so much for your contribution, which is a huge help to me!
May I suggest to consider using the `python.testing.cwd` setting parameter?
I found in the Output …
-
See build log [here](https://btx.cloud.google.com/invocations/ab643240-d58f-4e60-812b-30521d3b5065/log) where the presubmit `Kokoro Prerelease Dependencies` which runs the `prerelease_deps` nox sessio…
-
### Problem description
Running tests with the `pytest-xdist` plugin fails with errors:
```
[gw0] darwin -- Python 3.10.9 /.../bin/python3
file ~/dev/frc/robotpy/pyfrc/pyfrc/tests/basic.py, li…
-
Upsides:
* Can make test setup/teardown faster
* Since we have to run fixtures in independent tasks anyway (see #55), running them concurrently was easier than running them sequentially.
Counte…