Commit 1dc49d3e authored by Jérome Perrin's avatar Jérome Perrin

tests: ignore CryptographyDeprecationWarning on python2

parent 72821617
Pipeline #16952 failed with stage
in 0 seconds
......@@ -399,6 +399,9 @@ def test_suite():
(re.compile(r'\s/\S+\/shared\/'),
' /shared/'),
(re.compile('[0-9a-f]{32}'), md5sum),
(re.compile(
r'.*CryptographyDeprecationWarning: Python 2 is no longer supported by the Python core team. '
'Support for it is now deprecated in cryptography, and will be removed in the next release.\n.*'), ''),
# Normalize subprocess.CalledProcessError message, on python >= 3.6
# there's an extra . at the end.
(re.compile(r'Command (.*) returned non-zero exit status (\d+)[\.]{0,1}'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment