Skip to content

Commit

Permalink
Ignore various warnings from Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Compiler committed Apr 14, 2021
1 parent 4b214a6 commit bfcd796
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pyproject.toml
Expand Up @@ -42,6 +42,12 @@ filterwarnings = [
"default:invalid escape sequence:DeprecationWarning",
# ignore use of unregistered marks, because we use many to test the implementation
"ignore::_pytest.warning_types.PytestUnknownMarkWarning",
# https://github.com/benjaminp/six/issues/341
"ignore:_SixMetaPathImporter\\.exec_module\\(\\) not found; falling back to load_module\\(\\):ImportWarning",
# https://github.com/benjaminp/six/pull/352
"ignore:_SixMetaPathImporter\\.find_spec\\(\\) not found; falling back to find_module\\(\\):ImportWarning",
# https://github.com/pypa/setuptools/pull/2517
"ignore:VendorImporter\\.find_spec\\(\\) not found; falling back to find_module\\(\\):ImportWarning",
]
pytester_example_dir = "testing/example_scripts"
markers = [
Expand Down

0 comments on commit bfcd796

Please sign in to comment.