Skip to content

Commit b0fef46

Browse files
authored
Fix ci status failing in readme (#6)
* ci: fix ci status badge show failing * docs: update readme
1 parent f63f616 commit b0fef46

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ env:
1818

1919
jobs:
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:
@@ -68,7 +67,6 @@ jobs:
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

README.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ asyncodbc
1111
with asyncio_. It relies on the awesome pyodbc_ library and preserves the same look and
1212
feel. *asyncodbc* was written using `async/await` syntax (PEP492_) and only support
1313
Python 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
1515
drivers 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

0 commit comments

Comments
 (0)