added missing imports to main test file

This commit is contained in:
Alberto Soutullo Rendo 2023-01-11 21:08:00 +01:00
parent 52e5e54326
commit d17baa0701
1 changed files with 12 additions and 12 deletions

View File

@ -8,17 +8,17 @@ waku_test = import_module(system_variables.TEST_WAKU_MODULE)
def run(args):
test_load_config_args_default()
test_load_config_args_given()
args_parser_test.test_load_config_args_default()
args_parser_test.test_load_config_args_given()
test_get_toml_configuration_artifact_same_config_true()
test_get_toml_configuration_artifact_same_config_false()
test_generate_template_node_targets_single()
test_generate_template_node_targets_multiple()
test_generate_template_prometheus_url()
test_prepare_artifact_files_grafana()
file_helpers_test.test_get_toml_configuration_artifact_same_config_true()
file_helpers_test.test_get_toml_configuration_artifact_same_config_false()
file_helpers_test.test_generate_template_node_targets_single()
file_helpers_test.test_generate_template_node_targets_multiple()
file_helpers_test.test_generate_template_prometheus_url()
file_helpers_test.test_prepare_artifact_files_grafana()
test_network_creation()
test_create_waku_id()
test__merge_peer_ids()
test__add_information()
waku_test.test_network_creation()
waku_test.test_create_waku_id()
waku_test.test__merge_peer_ids()
waku_test.test__add_information()