Situation is as follows :
I am redoing all the test suites for my work and there is a LOT of warnings but not all of them I can fix.
More specifically, the project has dependencies that I cannot interfer with and cannot fix them
Here is an exemple :
/venv/lib/python3.9/site-packages/flask_restx/api.py:275: DeprecationWarning: 'ERROR_404_HELP' config setting is deprecated and will be removed in the future. Use 'RESTX_ERROR_404_HELP' instead.
In this case the warning originates from the venv directory and I cannot do anything about it for now
How can I just have all the other warnings without having to scroll through hundreds of warnings to find them ?
I would like to ignore all warnings that have venv/
in their path