Build large dataset for IntFields tests.
(db)
| 33 | |
| 34 | @pytest_asyncio.fixture |
| 35 | async def intfields_data(db): |
| 36 | """Build large dataset for IntFields tests.""" |
| 37 | intfields = [await IntFields.create(intnum=val) for val in range(10, 100, 3)] |
| 38 | return intfields |
| 39 | |
| 40 | |
| 41 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…