We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dfe5b2 commit 8f1ec16Copy full SHA for 8f1ec16
test_run.py
@@ -48,9 +48,10 @@ def retrieve_test_list(config_file=f"{PARENT_DIR}/.buildkite/test_description.js
48
49
test_config = retrieve_test_list()
50
for test in test_config["tests"]:
51
+ name = test["test_name"]
52
command = test["command"]
53
command = command.replace("{target_platform}", platform.machine())
54
test_func = make_test_function(command)
- setattr(TestsContainer, "test_{}".format(test["test_name"]), test_func)
55
+ setattr(TestsContainer, f"test_{name}", test_func)
56
57
unittest.main(verbosity=2)
0 commit comments