File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 49
49
from tests .utils .constants import PYAZURE_WORKER_DIR , \
50
50
PYAZURE_INTEGRATION_TEST , PROJECT_ROOT , WORKER_CONFIG , \
51
51
CONSUMPTION_DOCKER_TEST , DEDICATED_DOCKER_TEST , PYAZURE_WEBHOST_DEBUG
52
- from tests .utils .testutils_docker import WebHostConsumption
52
+ from tests .utils .testutils_docker import WebHostConsumption , WebHostDedicated
53
53
54
54
TESTS_ROOT = PROJECT_ROOT / 'tests'
55
55
E2E_TESTS_FOLDER = pathlib .Path ('endtoend' )
@@ -224,7 +224,7 @@ def setUpClass(cls):
224
224
if is_envvar_true (CONSUMPTION_DOCKER_TEST ):
225
225
cls .webhost = WebHostConsumption (script_dir ).spawn_container ()
226
226
elif is_envvar_true (DEDICATED_DOCKER_TEST ):
227
- cls .webhost = WebHostConsumption (script_dir ).spawn_container ()
227
+ cls .webhost = WebHostDedicated (script_dir ).spawn_container ()
228
228
else :
229
229
cls .webhost = start_webhost (script_dir = script_dir ,
230
230
stdout = cls .host_stdout )
You can’t perform that action at this time.
0 commit comments