Skip to content

Commit 528df0a

Browse files
committed
update
1 parent 5c44804 commit 528df0a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/_unit_test_coverage.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ jobs:
103103
python -m pip install coverage
104104
python -m pip install diff-cover
105105
python -m pip install ${fd_wheel_url}
106-
python -m pip install -r scripts/unittest_requirement.txt
107106
if [ -d "test/plugins" ]; then
108107
cd test/plugins
109108
python setup.py install
@@ -162,7 +161,7 @@ jobs:
162161
echo "unittest_failed_url=${UNIT_TEST_RESULT_URL}" >> $GITHUB_OUTPUT
163162
echo "unittest_failed_url=${UNIT_TEST_RESULT_URL}" >> $GITHUB_ENV
164163
fi
165-
- name: Determine Unit Succ
164+
- name: Check Unit Test Success
166165
shell: bash
167166
run: |
168167
if [ "$TEST_EXIT_CODE" -eq 8 ]; then
@@ -182,7 +181,7 @@ jobs:
182181
fi
183182
echo "All tests passed"
184183
185-
- name: Determine whether the coverage rate reaches 80%
184+
- name: Verify Code Coverage Threshold (80%)
186185
shell: bash
187186
run: |
188187
if [ "$COVERAGE_EXIT_CODE" -eq 9 ]; then

scripts/coverage_run.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ disabled_tests=(
3838
operators/test_fused_moe.py
3939
layers/test_repetition_early_stopper.py
4040
operators/test_stop_generation_multi_ends.py
41+
utils/test_download.py
4142
graph_optimization/test_cuda_graph.py
4243
)
4344
is_disabled() {

scripts/unittest_requirement.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)