From: Daniele Varrazzo Date: Tue, 29 Jun 2021 04:00:42 +0000 (+0100) Subject: Skip timing tests on windows X-Git-Tag: 3.0.dev0~4^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c39046c201c160cc9baf8597554bce3172acb32e;p=thirdparty%2Fpsycopg.git Skip timing tests on windows They fail less often than Mac OS, but they are still unreliable. --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3dab752a9..d79e03a8d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -127,8 +127,8 @@ jobs: env: PSYCOPG_IMPL: ${{ matrix.impl }} PSYCOPG_TEST_DSN: "host=127.0.0.1 dbname=postgres" - # On windows pproxy doesn't seem very happy. - PYTEST_ADDOPTS: "-m 'not proxy'" + # On windows pproxy doesn't seem very happy. Also a few timing test fail. + PYTEST_ADDOPTS: "-m 'not timing and not proxy'" steps: - uses: actions/checkout@v2