File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 33
33
{"pkg_name": "python==3.10.*", "flag": "3.10"},
34
34
{"pkg_name": "python==3.11.*", "flag": "3.11"},
35
35
{"pkg_name": "python==3.12.*", "flag": "3.12"},
36
- {"pkg_name": "pypy3.8 ", "flag": "pypy3.8 "},
36
+ {"pkg_name": "pypy3.10 ", "flag": "pypy3.10 "},
37
37
]
38
38
39
39
# The type of runner that the job will run on
@@ -153,9 +153,12 @@ jobs:
153
153
PYTEST_MYSQL_DB_URL : mysql://gis:gis@127.0.0.1:3307/gis
154
154
PYTEST_MARIADB_DB_URL : mariadb://gis:gis@127.0.0.1:3308/gis
155
155
run : |
156
- export PYTEST_ADDOPTS='--require-all-dialects'
157
- if [[ ${{ matrix.python-version.flag }} == 'pypy3.8' ]]; then
156
+ if [[ ${{ matrix.python-version.flag }} == 'pypy3.10' ]]; then
158
157
export PYTEST_ADDOPTS=${PYTEST_ADDOPTS}' --ignore=tests/gallery/test_insert_raster.py'
158
+ export PYTEST_SPATIALITE3_DB_URL="FAILING URL"
159
+ export PYTEST_SPATIALITE4_DB_URL="FAILING URL"
160
+ else
161
+ export PYTEST_ADDOPTS='--require-all-dialects'
159
162
fi;
160
163
# Run the unit test suite with SQLAlchemy=1.4.* and then with the latest version of SQLAlchemy
161
164
tox -vv
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ python =
11
11
3.10: py310-sqla{14, latest}
12
12
3.11: py311-sqla{14, latest}, docs
13
13
3.12: py312-sqla{14, latest}
14
- pypy-3.8 : pypy3-sqla{14, latest}
14
+ pypy-3.10 : pypy3-sqla{14, latest}
15
15
16
16
[testenv]
17
17
passenv =
You can’t perform that action at this time.
0 commit comments