pytest.ini 431 B

12345678910
  1. [pytest]
  2. filterwarnings =
  3. # This means: treat every warning as error, except for warnings that match .* (aka all warnings), ignore those.
  4. # This triggers the SyntaxError described in https://github.com/ray-project/ray/pull/31523 but keeps the status quo
  5. # warning behavior until https://github.com/ray-project/ray/pull/31219 .
  6. error
  7. # The format is `action:message_regex:category:module:line`.
  8. ignore:.*: