@@ -41,24 +41,28 @@ coverage:
4141 - ' */setup.py'
4242 - ' */transformer_engine/plugin/core/_build_config.py'
4343
44- # A script group preserves an existing QA entry point. A pytest group may
45- # instead declare pytest_args, env, log_dir, and a list of test steps.
44+ # Platform-owned launchers live under tests/plugin/backend/<platform>/.
45+ # A pytest group may instead declare pytest_args, env, log_dir, and steps.
4646unit_test_matrix :
4747 - name : pytorch_debug
4848 runner : script
49- path : qa/L0_pytorch_debug_unittest/test.sh
49+ path : tests/plugin/backend/example/run_unit_tests.sh
50+ args : [debug]
5051 - name : pytorch_unittest
5152 runner : script
52- path : qa/L0_pytorch_unittest/test.sh
53+ path : tests/plugin/backend/example/run_unit_tests.sh
54+ args : [unittest]
5355 - name : pytorch_distributed_unittest
5456 runner : script
55- path : qa/L1_pytorch_distributed_unittest/test.sh
57+ path : tests/plugin/backend/example/run_unit_tests.sh
58+ args : [distributed]
5659 - name : pytorch_onnx_unittest
5760 runner : script
58- path : qa/L1_pytorch_onnx_unittest/test.sh
61+ path : tests/plugin/backend/example/run_unit_tests.sh
62+ args : [onnx]
5963
6064# Integration groups use the same common workflow. Put test-specific
6165# environment defaults in the test script, not in the workflow.
6266integration_test_matrix :
6367 - name : pytorch_mcore_integration
64- path : qa/L1_pytorch_mcore_integration/test .sh
68+ path : tests/plugin/backend/example/run_integration_tests .sh
0 commit comments