File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
tests/e2e/singlecard/models Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ jobs:
217
217
echo "SAFE_VLLM_ASCEND_VERSION=$SAFE_VLLM_ASCEND_VERSION" >> "$GITHUB_ENV"
218
218
219
219
- name : Upload Report
220
- # if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.vllm-ascend-version == " latest" }}
220
+ if : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.vllm-ascend-version == ' latest' }}
221
221
uses : actions/upload-artifact@v4
222
222
with :
223
223
name : " report-${{ env.SAFE_VLLM_ASCEND_VERSION }}-${{ steps.report.outputs.markdown_name }}"
@@ -232,7 +232,7 @@ jobs:
232
232
create_pr :
233
233
runs-on : ubuntu-latest
234
234
needs : accuracy_tests
235
- # if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.vllm-ascend-version == " latest" }}
235
+ if : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.vllm-ascend-version == ' latest' }}
236
236
env :
237
237
UPSTREAM_REPO : vllm-project/vllm-ascend
238
238
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ def pytest_addoption(parser):
9
9
parser .addoption (
10
10
"--config-list-file" ,
11
11
action = "store" ,
12
+ default = None ,
12
13
help = "Path to the file listing model config YAMLs (one per line)" ,
13
14
)
14
15
parser .addoption (
@@ -20,16 +21,19 @@ def pytest_addoption(parser):
20
21
parser .addoption (
21
22
"--config" ,
22
23
action = "store" ,
24
+ default = "./tests/e2e/singlecard/models/configs/Qwen3-8B-Base.yaml" ,
23
25
help = "Path to the model config YAML file" ,
24
26
)
25
27
parser .addoption (
26
28
"--report_template" ,
27
29
action = "store" ,
30
+ default = "./tests/e2e/singlecard/models/report_template.md" ,
28
31
help = "Path to the report template file" ,
29
32
)
30
33
parser .addoption (
31
34
"--report_output" ,
32
35
action = "store" ,
36
+ default = "./benchmarks/accuracy/Qwen3-8B-Base.md" ,
33
37
help = "Path to the report output file" ,
34
38
)
35
39
You can’t perform that action at this time.
0 commit comments