File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 1818
1919jobs :
2020 test :
21- if : ${{ !(github.event_name == 'pull_request' && github.event.pull_request.base.repo.full_name == github.repository) }}
2221 runs-on : ubuntu-22.04
2322 services :
2423 mssql :
6867 COVERALLS_PARALLEL : true
6968
7069 coveralls :
71- if : ${{ !(github.event_name == 'pull_request' && github.event.pull_request.base.repo.full_name == github.repository) }}
7270 name : Finish Coveralls
7371 needs : test
7472 runs-on : ubuntu-22.04
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ asyncodbc
1111with asyncio _. It relies on the awesome pyodbc _ library and preserves the same look and
1212feel. *asyncodbc * was written using `async/await ` syntax (PEP492 _) and only support
1313Python that is not end-of-life(EOL). Internally *asyncodbc * employs threads to avoid
14- blocking the event loop, threads _ are not that as bad as you think!. Other
14+ blocking the event loop, threads _ are not that as bad as you think! Other
1515drivers like motor _ use the same approach.
1616
1717**asyncodbc ** is fully compatible and tested with uvloop _. Take a look at the test
@@ -39,7 +39,6 @@ Properties are unchanged, so ``conn.prop`` is correct as well as
3939 import asyncio
4040 import asyncodbc
4141
42-
4342 async def test_example ():
4443 dsn = ' Driver=SQLite;Database=sqlite.db'
4544 conn = await asyncodbc.connect(dsn = dsn, loop = loop)
@@ -65,7 +64,6 @@ Connection pooling is ported from aiopg_ and relies on PEP492_ features:
6564 import asyncio
6665 import asyncodbc
6766
68-
6967 async def test_pool ():
7068 dsn = ' Driver=SQLite;Database=sqlite.db'
7169 pool = await asyncodbc.create_pool(dsn = dsn, loop = loop)
@@ -93,7 +91,6 @@ protocol:
9391 import asyncio
9492 import asyncodbc
9593
96-
9794 async def test_example ():
9895 dsn = ' Driver=SQLite;Database=sqlite.db'
9996
You can’t perform that action at this time.
0 commit comments