Skip to content

Commit 44b4594

Browse files
CI: Disable SQLite for Pypy job
1 parent 1d537f5 commit 44b4594

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test_and_publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,12 @@ jobs:
153153
PYTEST_MYSQL_DB_URL: mysql://gis:gis@127.0.0.1:3307/gis
154154
PYTEST_MARIADB_DB_URL: mariadb://gis:gis@127.0.0.1:3308/gis
155155
run: |
156-
export PYTEST_ADDOPTS='--require-all-dialects'
157156
if [[ ${{ matrix.python-version.flag }} == 'pypy3.10' ]]; then
158157
export PYTEST_ADDOPTS=${PYTEST_ADDOPTS}' --ignore=tests/gallery/test_insert_raster.py'
158+
export PYTEST_SPATIALITE3_DB_URL=""
159+
export PYTEST_SPATIALITE4_DB_URL=""
160+
else
161+
export PYTEST_ADDOPTS='--require-all-dialects'
159162
fi;
160163
# Run the unit test suite with SQLAlchemy=1.4.* and then with the latest version of SQLAlchemy
161164
tox -vv

0 commit comments

Comments
 (0)