@@ -400,14 +400,6 @@ def create_no_c_ext_variants():
400400 return [create_variant (tasks , display_name , host = host , expansions = expansions )]
401401
402402
403- def create_mod_wsgi_variants ():
404- host = HOSTS ["ubuntu22" ]
405- tasks = [".mod_wsgi" ]
406- expansions = dict (MOD_WSGI_VERSION = "4" )
407- display_name = get_variant_name ("Mod_WSGI" , host )
408- return [create_variant (tasks , display_name , host = host , expansions = expansions )]
409-
410-
411403def create_disable_test_commands_variants ():
412404 host = DEFAULT_HOST
413405 expansions = dict (AUTH = "auth" , SSL = "ssl" , DISABLE_TEST_COMMANDS = "1" )
@@ -1012,31 +1004,6 @@ def create_oidc_tasks():
10121004 return tasks
10131005
10141006
1015- def create_mod_wsgi_tasks ():
1016- tasks = []
1017- for (test , topology ), python in zip_cycle (
1018- product (["standalone" , "embedded-mode" ], ["standalone" , "replica_set" ]), CPYTHONS
1019- ):
1020- if "t" in python :
1021- continue
1022- if test == "standalone" :
1023- task_name = "mod-wsgi-"
1024- else :
1025- task_name = "mod-wsgi-embedded-mode-"
1026- task_name += topology .replace ("_" , "-" )
1027- task_name = get_task_name (task_name , python = python )
1028- server_vars = dict (TOPOLOGY = topology , TOOLCHAIN_VERSION = python )
1029- server_func = FunctionCall (func = "run server" , vars = server_vars )
1030- vars = dict (
1031- TEST_NAME = "mod_wsgi" , SUB_TEST_NAME = test .split ("-" )[0 ], TOOLCHAIN_VERSION = python
1032- )
1033- test_func = FunctionCall (func = "run tests" , vars = vars )
1034- tags = ["mod_wsgi" , "pr" ]
1035- commands = [server_func , test_func ]
1036- tasks .append (EvgTask (name = task_name , tags = tags , commands = commands ))
1037- return tasks
1038-
1039-
10401007def _create_ocsp_tasks (algo , variant , server_type , base_task_name ):
10411008 tasks = []
10421009 file_name = f"{ algo } -basic-tls-ocsp-{ variant } .json"
0 commit comments