Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Commit

Permalink
Re-add old warnings capture, add new warning
Browse files Browse the repository at this point in the history
These were removed in #985 but were actually still being issued, I had just written a very poor filter that apparently captured everything...
  • Loading branch information
AetherUnbound committed Feb 25, 2023
1 parent 6977f79 commit b148b26
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,16 @@ addopts =
# sqlalchemy
# Warning in dependency, nothing we can do
# https://docs.sqlalchemy.org/en/20/errors.html#error-b8d9
# airflow
# Warning within Airflow for an internal call, nothing we can do
# flask
# https://docs.sqlalchemy.org/en/20/errors.html#error-b8d9
# Warning in dependency, nothing we can do
# "removed"/"remoevd" is due to https://github.com/pallets/flask
# distutils
# Warning in dependency, nothing we can do
filterwarnings=
ignore:.*Deprecated API features detected.*:sqlalchemy.exc.MovedIn20Warning
ignore::sqlalchemy.exc.MovedIn20Warning
ignore:Calling `DAG.create_dagrun\(\)` without an explicit data interval is deprecated:airflow.exceptions.RemovedInAirflow3Warning
ignore:.*is deprecated and will be (remoevd|removed) in Flask 2.3.:DeprecationWarning
ignore:distutils Version classes are deprecated. Use packaging.version instead:DeprecationWarning

0 comments on commit b148b26

Please sign in to comment.