-
Ciao! 😊
Was following [tip number 5](https://github.com/kludex/fastapi-tips#5-use-httpxs-asyncclient-instead-of-testclient) and use httpx AsyncClient over the TestClient. So:
```python
import p…
-
https://github.com/pytest-dev/pytest-asyncio has a very convenient feature: async (generator) fixtures. I.e.
```python
@pytest.fixture()
async def connection():
async with Connection() as conn…
-
Bonjour,
I just discover this plugin and it looks like it might help me to achieve what I am looking for in terms of tests.
If I try to get a minimal working example of what I need is:
* One of t…
ant1j updated
2 months ago
-
Environment:
ruby 3.1.1
rails 7.0.3
devise 4.8.1
Reproduce:
`rails g devise:install && rails g devise user`
`rails test`
Result:
All test fail because user fixtures fail unique constra…
-
There is no easy way to set IDs when importing fixtures.
We can't truncate MySQL tables with FKs. According to project maintainers, it will never be possible: https://github.com/doctrine/DoctrineFixt…
-
**Context:**
I am using playwright to test REST API endpoints.
I do not see trace.zip after I run pytest --tracing=on.
**Code Snippet**
Simple test script
```python
import os
from typing …
-
There seems to be an issue with the generators, even the examples provided in the docs are not returning the expected values.
**TL;DR**: run the stackblitz here to see the issue:
https://stackblit…
-
Babel recently added a test file
https://github.com/babel/babel/blob/dc1f486ea52bef2341048c499ca1342d5cab7f8a/packages/babel-generator/test/fixtures/parentheses/in-inside-for/input.js#L1
Meriyah…
-
The API has a number of fields for monitoring and controlling an integrated generator. However, I do not have a generator integrated with my system to test with, and we currently have no device fixtur…
-
I hoped to be able to do the following for my test cases requiring `trio-asyncio`:
@pytest_trio.trio_fixture
async def trio_aio_loop():
async with trio_asyncio.open_loop() as loop…