File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,6 @@ jobs:
103
103
python -m pip install coverage
104
104
python -m pip install diff-cover
105
105
python -m pip install ${fd_wheel_url}
106
- python -m pip install -r scripts/unittest_requirement.txt
107
106
if [ -d "test/plugins" ]; then
108
107
cd test/plugins
109
108
python setup.py install
@@ -162,7 +161,7 @@ jobs:
162
161
echo "unittest_failed_url=${UNIT_TEST_RESULT_URL}" >> $GITHUB_OUTPUT
163
162
echo "unittest_failed_url=${UNIT_TEST_RESULT_URL}" >> $GITHUB_ENV
164
163
fi
165
- - name : Determine Unit Succ
164
+ - name : Check Unit Test Success
166
165
shell : bash
167
166
run : |
168
167
if [ "$TEST_EXIT_CODE" -eq 8 ]; then
@@ -182,7 +181,7 @@ jobs:
182
181
fi
183
182
echo "All tests passed"
184
183
185
- - name : Determine whether the coverage rate reaches 80%
184
+ - name : Verify Code Coverage Threshold ( 80%)
186
185
shell : bash
187
186
run : |
188
187
if [ "$COVERAGE_EXIT_CODE" -eq 9 ]; then
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ disabled_tests=(
38
38
operators/test_fused_moe.py
39
39
layers/test_repetition_early_stopper.py
40
40
operators/test_stop_generation_multi_ends.py
41
+ utils/test_download.py
41
42
graph_optimization/test_cuda_graph.py
42
43
)
43
44
is_disabled () {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments