Skip to content

Commit

Permalink
Update cmdline
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisVieriu97 committed Nov 28, 2023
1 parent 26ce2f3 commit d48318e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion backends/apple/mps/ci/scripts/gather_test_models_mps.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ def export_models_for_ci() -> None:
args = parse_args()
target_os = args.target_os

print(f"target os: {target_os}")

# This is the JSON syntax for configuration matrix used by GitHub
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
models = {"include": []}
Expand Down Expand Up @@ -95,9 +97,13 @@ def export_models_for_ci() -> None:
if target_os not in BUILD_TOOLS[build_tool]:
continue

print(f"method: {testcase._testMethodName}")
print(f"{testcase.__class__}")
print(f"{testcase.__class__.__name__}")
cmd = ".".join([start_path, testcase.__class__.__name__, testcase._testMethodName])
record = {
"build-tool": build_tool,
"model": testcase._testMethodName,
"model": cmd,
"runner": DEFAULT_RUNNERS.get(target_os),
}

Expand Down

0 comments on commit d48318e

Please sign in to comment.