From: Daniele Varrazzo Date: Sun, 14 Nov 2021 18:52:42 +0000 (+0100) Subject: Fix CI tests X-Git-Tag: 3.0.4~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=878dc436fe7b7e699b3cccce459ac7ff8ea10e1f;p=thirdparty%2Fpsycopg.git Fix CI tests I made this change earlier but committed the wrong branch... Sowwy. --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cf12d0393..55b164559 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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