Commit 2dbbb463 authored by Łukasz Nowak's avatar Łukasz Nowak

promise/plugin: test_check_url_available reuse slaposification

parent 2636acbb
...@@ -39,12 +39,13 @@ import datetime ...@@ -39,12 +39,13 @@ import datetime
import ipaddress import ipaddress
import json import json
import multiprocessing import multiprocessing
import os
import ssl import ssl
import tempfile import tempfile
import time import time
import unittest import unittest
SLAPOS_TEST_IPV4 = '127.0.0.1' SLAPOS_TEST_IPV4 = os.environ.get('SLAPOS_TEST_IPV4', '127.0.0.1')
SLAPOS_TEST_IPV4_PORT = 57965 SLAPOS_TEST_IPV4_PORT = 57965
HTTPS_ENDPOINT = "https://%s:%s/" % (SLAPOS_TEST_IPV4, SLAPOS_TEST_IPV4_PORT) HTTPS_ENDPOINT = "https://%s:%s/" % (SLAPOS_TEST_IPV4, SLAPOS_TEST_IPV4_PORT)
......
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