File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -9,18 +9,18 @@ concurrency:
99 group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
1010 cancel-in-progress : true
1111jobs :
12- test_accuracy :
12+ test_accuracy_items :
1313 strategy :
1414 fail-fast : false
1515 matrix :
1616 os :
1717 - " ubuntu-24.04"
18- - " windows-2022"
18+ # - "windows-2022"
1919 python-version :
2020 - " 3.10"
21- - " 3.11"
22- - " 3.12"
23- - " 3.13"
21+ # - "3.11"
22+ # - "3.12"
23+ # - "3.13"
2424 runs-on : ${{ matrix.os }}
2525 steps :
2626 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4040 - name : Run Python Test
4141 run : |
4242 uv run pytest --data=./data tests/accuracy/test_accuracy.py
43+ tests :
44+ runs-on : ubuntu-latest
45+ needs : test_accuracy_items
46+ if : always()
47+ steps :
48+ - name : All tests ok
49+ if : ${{ !(contains(needs.*.result, 'failure')) }}
50+ run : exit 0
51+ - name : Some tests failed
52+ if : ${{ contains(needs.*.result, 'failure') }}
53+ run : exit 1
You can’t perform that action at this time.
0 commit comments