diff options
author | Florian Bruhin <me@the-compiler.org> | 2021-01-26 20:12:05 +0100 |
---|---|---|
committer | Florian Bruhin <me@the-compiler.org> | 2021-01-26 20:44:22 +0100 |
commit | 62687b1f822211024b4d6ded114a0ecbd7d99708 (patch) | |
tree | 4f1697b331ba23e2e8832e2d611fe9118a1901ee /pytest.ini | |
parent | 922dca039b8d88bbca6ad45c53b6aceac858784e (diff) | |
download | qutebrowser-62687b1f822211024b4d6ded114a0ecbd7d99708.tar.gz qutebrowser-62687b1f822211024b4d6ded114a0ecbd7d99708.zip |
tests: Ignore SixMetaPathImporter warning
Seems to be raised when importing six (via tldextract/requests/urllib)
on Python 3.10: https://github.com/benjaminp/six/issues/341
See #6068
Diffstat (limited to 'pytest.ini')
-rw-r--r-- | pytest.ini | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini index 73c0d7adf..3369a631e 100644 --- a/pytest.ini +++ b/pytest.ini @@ -80,4 +80,5 @@ xfail_strict = true filterwarnings = error default:Test process .* failed to terminate!:UserWarning + ignore:_SixMetaPathImporter\.exec_module\(\) not found; falling back to load_module\(\):ImportWarning faulthandler_timeout = 90 |