File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,14 @@ filterwarnings = [
42
42
" default:invalid escape sequence:DeprecationWarning" ,
43
43
# ignore use of unregistered marks, because we use many to test the implementation
44
44
" ignore::_pytest.warning_types.PytestUnknownMarkWarning" ,
45
+ # https://github.com/benjaminp/six/issues/341
46
+ " ignore:_SixMetaPathImporter\\ .exec_module\\ (\\ ) not found; falling back to load_module\\ (\\ ):ImportWarning" ,
47
+ # https://github.com/benjaminp/six/pull/352
48
+ " ignore:_SixMetaPathImporter\\ .find_spec\\ (\\ ) not found; falling back to find_module\\ (\\ ):ImportWarning" ,
49
+ # https://github.com/pypa/setuptools/pull/2517
50
+ " ignore:VendorImporter\\ .find_spec\\ (\\ ) not found; falling back to find_module\\ (\\ ):ImportWarning" ,
51
+ # https://github.com/pytest-dev/execnet/pull/127
52
+ " ignore:isSet\\ (\\ ) is deprecated, use is_set\\ (\\ ) instead:DeprecationWarning" ,
45
53
]
46
54
pytester_example_dir = " testing/example_scripts"
47
55
markers = [
You can’t perform that action at this time.
0 commit comments