]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Skip timing tests on windows
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 29 Jun 2021 04:00:42 +0000 (05:00 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 29 Jun 2021 12:47:15 +0000 (13:47 +0100)
They fail less often than Mac OS, but they are still unreliable.

.github/workflows/tests.yml

index 3dab752a9ad10306bd4087f8f051ca8b0e80dd81..d79e03a8d22b9e453c1e567c6d0ccd507c8a6433 100644 (file)
@@ -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