1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00

Skip on pyOpenSSL (#1376)

This commit is contained in:
Batuhan Taskaya
2022-04-28 15:18:20 +03:00
committed by GitHub
parent 79a8ecd84b
commit 419cc2c34a
3 changed files with 7 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
"""Utilities for HTTPie test suite."""
import re
import shlex
import os
import sys
import time
import json
@@ -30,6 +31,7 @@ REMOTE_HTTPBIN_DOMAIN = 'pie.dev'
HTTPBIN_WITH_CHUNKED_SUPPORT_DOMAIN = 'pie.dev'
HTTPBIN_WITH_CHUNKED_SUPPORT = 'http://' + HTTPBIN_WITH_CHUNKED_SUPPORT_DOMAIN
IS_PYOPENSSL = os.getenv('HTTPIE_TEST_WITH_PYOPENSSL', '0') == '1'
TESTS_ROOT = Path(__file__).parent.parent
CRLF = '\r\n'