pytest - Suppress DeprecationWarning from specific 3rd party modules

The answer from @Santiago Magariños does not work for me (but it put me on the correct path to find solution - so many thanks).

I use Python 3.9, pytest 6.2.1 and trying to suppress warnings from selenium 3.141.0.

I have realized that I need to prepend .* before the module name:

[pytest]
filterwarnings = ignore:::.*.selenium

or use the full "path". So to suppress the warning

../../../../../../.local/share/virtualenvs/common-bjARi2zp/lib/python3.9/site-packages/selenium/webdriver/support/wait.py:28
  /home/vaclav/.local/share/virtualenvs/common-bjARi2zp/lib/python3.9/site-packages/selenium/webdriver/support/wait.py:28: DeprecationWarning: invalid escape sequence \ 
    """Constructor, takes a WebDriver instance and timeout in seconds.

I need to use this filter in pytest.ini file:

[pytest]
filterwarnings = ignore:::.home.vaclav..local.share.virtualenvs.common-bjARi2zp.lib.python3.9.site-packages.selenium

You should use the warning filters options (ini or marks):

[pytest]
filterwarnings =
    ignore::DeprecationWarning:botocore.*:

Source: https://docs.python.org/3/library/warnings.html#default-warning-filter

"Individual warnings filters are specified as a sequence of fields separated by colons:"

action:message:category:module:line

Tags:

Python

Pytest