diff --git a/pyproject.toml b/pyproject.toml index dce9657f1007..86eeb971d114 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -496,6 +496,11 @@ filterwarnings = [ # Example Actual Warning: UserWarning: pandas only supports SQLAlchemy connectable (engine/connection) or database string URI or sqlite3 DBAPI2 connection. Other DBAPI2 objects are not tested. Please consider using SQLAlchemy. # Found when runing pytest tests/test_definitions/test_expectations_v3_api.py 'ignore: pandas only supports SQLAlchemy connectable (engine/connection) or database string URI or sqlite3 DBAPI2 connection:UserWarning', + # Example Actual Warning: FutureWarning: In a future version of pandas, parsing datetimes with mixed time zones will raise an error unless `utc=True`. Please specify `utc=True` to opt in to the new behaviour and silence this warning. To create a `Series` with mixed offsets and `object` dtype, please use `apply` and `datetime.datetime.strptime` + 'ignore: In a future version of pandas, parsing datetimes with mixed time zones will raise an error:FutureWarning', + # Example Actual Warning: DeprecationWarning: Passing a BlockManager to PandasDataset is deprecated and will raise in a future version. Use public APIs instead. + # This is a legacy pattern that will be removed from GX + 'ignore: Passing a BlockManager to PandasDataset is deprecated and will raise in a future version. Use public APIs instead.:DeprecationWarning', # numpy # Example Actual Warning: RuntimeWarning: Mean of empty slice.