Skip to content

CI: Try with sqlalchemy warnings #50580

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 16 commits into from
2 changes: 1 addition & 1 deletion ci/deps/actions-310.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies:
- pyxlsb
- s3fs>=2021.08.0
- scipy
- sqlalchemy<1.4.46
- sqlalchemy=1.4.46
- tabulate
- tzdata>=2022a
- xarray
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/actions-38-downstream_compat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies:
- pyxlsb
- s3fs>=2021.08.0
- scipy
- sqlalchemy<1.4.46
- sqlalchemy=1.4.46
- tabulate
- xarray
- xlrd
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/actions-38.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies:
- pyxlsb
- s3fs>=2021.08.0
- scipy
- sqlalchemy<1.4.46
- sqlalchemy=1.4.46
- tabulate
- xarray
- xlrd
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/actions-39.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies:
- pyxlsb
- s3fs>=2021.08.0
- scipy
- sqlalchemy<1.4.46
- sqlalchemy=1.4.46
- tabulate
- tzdata>=2022a
- xarray
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/circle-38-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies:
- pyxlsb
- s3fs>=2021.08.0
- scipy
- sqlalchemy<1.4.46
- sqlalchemy=1.4.46
- tabulate
- xarray
- xlrd
Expand Down
2 changes: 1 addition & 1 deletion ci/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
XVFB="xvfb-run "
fi

PYTEST_CMD="${XVFB}pytest -r fEs -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE $PYTEST_TARGET"
PYTEST_CMD="SQLALCHEMY_WARN_20=1 ${XVFB}pytest -r fEs -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE $PYTEST_TARGET"

if [[ "$PATTERN" ]]; then
PYTEST_CMD="$PYTEST_CMD -m \"$PATTERN\""
Expand Down
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies:
- pyxlsb
- s3fs>=2021.08.0
- scipy
- sqlalchemy<1.4.46
- sqlalchemy>=1.4.46
- tabulate
- tzdata>=2022a
- xarray
Expand Down Expand Up @@ -90,6 +90,7 @@ dependencies:
- gitdb
- natsort # DataFrame.sort_values doctest
- numpydoc
- pandas-dev-flaker=0.5.0
- pydata-sphinx-theme<0.11
- pytest-cython # doctest
- sphinx
Expand Down
Loading