evalstone/evalscope/tests/test_run_all.py
sora 13274243a0 Bump vendored EvalScope and add K3-ready DPV4 configs.
Keep K3 suite selection and report-schema scoring in bash, merge K3/vision dataset_args into dpv4 yamls, and pin EvalScope at 735d920ee911 with local patches.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-02 07:30:48 +00:00

13 lines
428 B
Python

# Copyright (c) Alibaba, Inc. and its affiliates.
import subprocess
if __name__ == '__main__':
cmd = 'TEST_LEVEL_LIST=0,1 python3 -m unittest discover tests'
run_res = subprocess.run(cmd, text=True, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if run_res.returncode == 0:
print(f'>>test_run_all stdout: {run_res.stdout}')
else:
print(f'>>test_run_all stderr: {run_res.stderr}')