potiuk commented on code in PR #30315:
URL: https://github.com/apache/airflow/pull/30315#discussion_r1150310065
##########
pyproject.toml:
##########
@@ -67,6 +67,38 @@ extend-ignore = [
"E731",
]
+[tool.pytest.ini_options]
+# * Disable `flaky` plugin for pytest. This plugin conflicts with
`rerunfailures` because provide same marker.
+# * Disable `nose` builtin plugin for pytest. This feature deprecated in 7.2
and will be removed in pytest>=8
+# * And we focus on use native pytest capabilities rather than adopt another
frameworks.
+addopts = "-rasl --verbosity=2 -p no:flaky -p no:nose --asyncio-mode=strict"
+norecursedirs = [
+ ".eggs",
+ "airflow",
+ "tests/dags_with_system_exit",
+ "tests/test_utils",
+ "tests/dags_corrupted",
+ "tests/dags",
+ "tests/system/providers/google/cloud/dataproc/resources",
+ "tests/system/providers/google/cloud/gcs/resources",
+]
+log_level = "INFO"
+filterwarnings = [
+ "error::pytest.PytestCollectionWarning",
+ "ignore::DeprecationWarning:flask_appbuilder.filemanager",
+ "ignore::DeprecationWarning:flask_appbuilder.widgets",
+ # https://github.com/dpgaspar/Flask-AppBuilder/pull/1940
+ "ignore::DeprecationWarning:flask_sqlalchemy",
+ # https://github.com/dpgaspar/Flask-AppBuilder/pull/1903
+ "ignore::DeprecationWarning:apispec.utils",
+]
Review Comment:
This is completely different issue - unrelated to this migration and should
be treated separately - I just moved the configuration from pytest.ini. I want
the tests to pass and not to skip some tests accidentally, not to fix all the
other problems - I already spent far too much time on this one.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]