-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to ensure all dialects are properly tested in CI (#526)
- Loading branch information
1 parent
f93cf5a
commit b319a15
Showing
2 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,8 +153,9 @@ jobs: | |
PYTEST_MYSQL_DB_URL: mysql://gis:[email protected]:3307/gis | ||
PYTEST_MARIADB_DB_URL: mariadb://gis:[email protected]:3308/gis | ||
run: | | ||
export PYTEST_ADDOPTS='--require-all-dialects' | ||
if [[ ${{ matrix.python-version.flag }} == 'pypy3.8' ]]; then | ||
export PYTEST_ADDOPTS='--ignore=tests/gallery/test_insert_raster.py' | ||
export PYTEST_ADDOPTS=${PYTEST_ADDOPTS}' --ignore=tests/gallery/test_insert_raster.py' | ||
fi; | ||
# Run the unit test suite with SQLAlchemy=1.4.* and then with the latest version of SQLAlchemy | ||
tox -vv | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters