Skip to content

Commit

Permalink
CI: Disable SQLite for Pypy job
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien-berchet committed Nov 13, 2024
1 parent 1d537f5 commit 44b4594
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,12 @@ jobs:
PYTEST_MYSQL_DB_URL: mysql://gis:gis@127.0.0.1:3307/gis
PYTEST_MARIADB_DB_URL: mariadb://gis:gis@127.0.0.1:3308/gis
run: |
export PYTEST_ADDOPTS='--require-all-dialects'
if [[ ${{ matrix.python-version.flag }} == 'pypy3.10' ]]; then
export PYTEST_ADDOPTS=${PYTEST_ADDOPTS}' --ignore=tests/gallery/test_insert_raster.py'
export PYTEST_SPATIALITE3_DB_URL=""
export PYTEST_SPATIALITE4_DB_URL=""
else
export PYTEST_ADDOPTS='--require-all-dialects'
fi;
# Run the unit test suite with SQLAlchemy=1.4.* and then with the latest version of SQLAlchemy
tox -vv
Expand Down

0 comments on commit 44b4594

Please sign in to comment.