Skip to content
Snippets Groups Projects
Commit 8a951b50 authored by Tomas Krizek's avatar Tomas Krizek Committed by Petr Špaček
Browse files

pytests: check minimum required gnutls version

Add a message to make extra requirements clear instead of throwing
a compilation error.

Closes #457
parent 287e06a2
Branches
Tags
1 merge request!796pytests: check minimum required gnutls version
Pipeline #47230 canceled with stages
in 7 seconds
......@@ -9,6 +9,10 @@ py3_deps += [
['xdist', 'pytest-xdist (for pytests)'],
]
if gnutls.version().version_compare('<3.6.4')
error('pytests require GnuTLS >= 3.6.4')
endif
# compile tlsproxy
tlsproxy_src = files([
'proxy/tlsproxy.c',
......
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