Skip to content

Commit 7c941c6

Browse files
committed
fix
Signed-off-by: Icey <1790571317@qq.com>
1 parent e11668c commit 7c941c6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/accuracy_test_new.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
echo "SAFE_VLLM_ASCEND_VERSION=$SAFE_VLLM_ASCEND_VERSION" >> "$GITHUB_ENV"
218218
219219
- 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' }}
221221
uses: actions/upload-artifact@v4
222222
with:
223223
name: "report-${{ env.SAFE_VLLM_ASCEND_VERSION }}-${{ steps.report.outputs.markdown_name }}"
@@ -232,7 +232,7 @@ jobs:
232232
create_pr:
233233
runs-on: ubuntu-latest
234234
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' }}
236236
env:
237237
UPSTREAM_REPO: vllm-project/vllm-ascend
238238

tests/e2e/singlecard/models/conftest.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ def pytest_addoption(parser):
99
parser.addoption(
1010
"--config-list-file",
1111
action="store",
12+
default=None,
1213
help="Path to the file listing model config YAMLs (one per line)",
1314
)
1415
parser.addoption(
@@ -20,16 +21,19 @@ def pytest_addoption(parser):
2021
parser.addoption(
2122
"--config",
2223
action="store",
24+
default="./tests/e2e/singlecard/models/configs/Qwen3-8B-Base.yaml",
2325
help="Path to the model config YAML file",
2426
)
2527
parser.addoption(
2628
"--report_template",
2729
action="store",
30+
default="./tests/e2e/singlecard/models/report_template.md",
2831
help="Path to the report template file",
2932
)
3033
parser.addoption(
3134
"--report_output",
3235
action="store",
36+
default="./benchmarks/accuracy/Qwen3-8B-Base.md",
3337
help="Path to the report output file",
3438
)
3539

0 commit comments

Comments
 (0)