I've updated jenkins to see what happens
Change-Id: If71b3f6da98dacd21419e8ece2395bc5fd20d133
-import asyncio
import inspect as stdlib_inspect
from sqlalchemy import Column
@async_test
async def test_init_once_concurrency(self, async_engine):
async with async_engine.connect() as c1, async_engine.connect() as c2:
- await asyncio.wait([c1, c2])
+ eq_(await c1.scalar(select(1)), 1)
+ eq_(await c2.scalar(select(1)), 1)
@async_test
async def test_connect_ctxmanager(self, async_engine):
pytest>=7.0.0rc1,<8
pytest-xdist
- # cython and greenlet both not working on 3.11
- # note cython not working for 3.11 at all right now
- git+https://github.com/sqlalchemyorg/greenlet/@fix_py311_cpp#egg=greenlet; python_version >= '3.11'
-
sqlite: .[aiosqlite]
sqlite_file: .[aiosqlite]
sqlite_file: .[sqlcipher]; python_version < '3.10'