Skip to content

Commit ddadce9

Browse files
committed
Remove remnants of the old CI
1 parent 0e0eb8d commit ddadce9

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

README.rst

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
asyncpg -- A fast PostgreSQL Database Client Library for Python/asyncio
22
=======================================================================
33

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
107
.. 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
129

1310
**asyncpg** is a database interface library designed specifically for
1411
PostgreSQL and Python/asyncio. asyncpg is an efficient, clean implementation

tests/test_pool.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,7 @@
2424
_system = platform.uname().system
2525

2626

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
3228

3329

3430
class SlowResetConnection(pg_connection.Connection):

0 commit comments

Comments
 (0)