File tree 2 files changed +5
-12
lines changed
2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 1
1
asyncpg -- A fast PostgreSQL Database Client Library for Python/asyncio
2
2
=======================================================================
3
3
4
- .. image :: https://travis-ci.org/MagicStack/asyncpg.svg?branch=master
5
- :target: https://travis-ci.org/MagicStack/asyncpg
6
-
7
- .. image :: https://ci.appveyor.com/api/projects/status/9rwppnxphgc8bqoj/branch/master?svg=true
8
- :target: https://ci.appveyor.com/project/magicstack/asyncpg
9
-
4
+ .. image :: https://github.com/MagicStack/asyncpg/workflows/Tests/badge.svg
5
+ :target: https://github.com/MagicStack/asyncpg/actions?query=workflow%3ATests+branch%3Amaster
6
+ :alt: GitHub Actions status
10
7
.. image :: https://img.shields.io/pypi/v/asyncpg.svg
11
- :target: https://pypi.python.org/pypi/asyncpg
8
+ :target: https://pypi.python.org/pypi/asyncpg
12
9
13
10
**asyncpg ** is a database interface library designed specifically for
14
11
PostgreSQL and Python/asyncio. asyncpg is an efficient, clean implementation
Original file line number Diff line number Diff line change 24
24
_system = platform .uname ().system
25
25
26
26
27
- if os .environ .get ('TRAVIS_OS_NAME' ) == 'osx' :
28
- # Travis' macOS is _slow_.
29
- POOL_NOMINAL_TIMEOUT = 0.5
30
- else :
31
- POOL_NOMINAL_TIMEOUT = 0.1
27
+ POOL_NOMINAL_TIMEOUT = 0.1
32
28
33
29
34
30
class SlowResetConnection (pg_connection .Connection ):
You can’t perform that action at this time.
0 commit comments