From ddadce91315473b52a653e1edde6080e14377469 Mon Sep 17 00:00:00 2001 From: Elvis Pranskevichus Date: Sun, 29 Nov 2020 10:57:55 -0800 Subject: [PATCH] Remove remnants of the old CI --- README.rst | 11 ++++------- tests/test_pool.py | 6 +----- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/README.rst b/README.rst index fac5744a..86c52524 100644 --- a/README.rst +++ b/README.rst @@ -1,14 +1,11 @@ asyncpg -- A fast PostgreSQL Database Client Library for Python/asyncio ======================================================================= -.. image:: https://travis-ci.org/MagicStack/asyncpg.svg?branch=master - :target: https://travis-ci.org/MagicStack/asyncpg - -.. image:: https://ci.appveyor.com/api/projects/status/9rwppnxphgc8bqoj/branch/master?svg=true - :target: https://ci.appveyor.com/project/magicstack/asyncpg - +.. image:: https://github.com/MagicStack/asyncpg/workflows/Tests/badge.svg + :target: https://github.com/MagicStack/asyncpg/actions?query=workflow%3ATests+branch%3Amaster + :alt: GitHub Actions status .. image:: https://img.shields.io/pypi/v/asyncpg.svg - :target: https://pypi.python.org/pypi/asyncpg + :target: https://pypi.python.org/pypi/asyncpg **asyncpg** is a database interface library designed specifically for PostgreSQL and Python/asyncio. asyncpg is an efficient, clean implementation diff --git a/tests/test_pool.py b/tests/test_pool.py index 9857dceb..8a237323 100644 --- a/tests/test_pool.py +++ b/tests/test_pool.py @@ -24,11 +24,7 @@ _system = platform.uname().system -if os.environ.get('TRAVIS_OS_NAME') == 'osx': - # Travis' macOS is _slow_. - POOL_NOMINAL_TIMEOUT = 0.5 -else: - POOL_NOMINAL_TIMEOUT = 0.1 +POOL_NOMINAL_TIMEOUT = 0.1 class SlowResetConnection(pg_connection.Connection):