Skip to content
Snippets Groups Projects
Commit 400134c1 authored by Nicolas KAROLAK's avatar Nicolas KAROLAK
Browse files

skip test if < python3.6

parent d4ed3266
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,9 @@ import requests
import socket
import sys
if sys.version_info < (3, 6, 0):
sys.exit(2)
try:
from requests.packages.urllib3.exceptions import InsecureRequestWarning
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment