]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Fix CI tests
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 14 Nov 2021 18:52:42 +0000 (19:52 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 14 Nov 2021 18:53:16 +0000 (19:53 +0100)
I made this change earlier but committed the wrong branch... Sowwy.

.github/workflows/tests.yml

index cf12d0393f2a7848087baf99124602f4ef2f1cc6..55b1645594cf5167ca27a1ac1de87e70dde23c68 100644 (file)
@@ -72,17 +72,17 @@ jobs:
         if: ${{ matrix.impl == 'c' }}
         # skip tests failing on importing psycopg_c.pq on subprocess
         # they only fail on Travis, work ok locally under tox too.
-        run: tox -c psycopg_c -e ${{ matrix.python }} -m 'not subprocess'
+        run: tox -c psycopg_c -e ${{ matrix.python }} -- -m 'not subprocess'
 
       - name: Run DNS-related tests
         if: ${{ matrix.impl == 'dns' }}
-        run: tox -c psycopg -e dns -m dns
+        run: tox -c psycopg -e dns -- -m dns
         env:
           PSYCOPG_IMPL: python
 
       - name: Run PostGIS-related tests
         if: ${{ matrix.impl == 'postgis' }}
-        run: tox -c psycopg -e postgis -m postgis
+        run: tox -c psycopg -e postgis -- -m postgis
         env:
           PSYCOPG_IMPL: python