File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -106,11 +106,18 @@ jobs:
106
106
# https://pytorch.org/docs/stable/notes/randomness.html#avoiding-nondeterministic-algorithms
107
107
CUBLAS_WORKSPACE_CONFIG : :16:8
108
108
run : |
109
- pattern=$(cat ${{ steps.extract_tests.outputs.pattern_file }})
110
- python -m pytest -n 1 --max-worker-restart=0 --dist=loadfile \
111
- -s -v -k "not Flax and not Onnx and $pattern" \
112
- --make-reports=tests_pipeline_${{ matrix.module }}_cuda \
113
- tests/pipelines/${{ matrix.module }}
109
+ if [ "${{ matrix.module }}" = "ip_adapters" ]; then
110
+ python -m pytest -n 1 --max-worker-restart=0 --dist=loadfile \
111
+ -s -v -k "not Flax and not Onnx" \
112
+ --make-reports=tests_pipeline_${{ matrix.module }}_cuda \
113
+ tests/pipelines/${{ matrix.module }}
114
+ else
115
+ pattern=$(cat ${{ steps.extract_tests.outputs.pattern_file }})
116
+ python -m pytest -n 1 --max-worker-restart=0 --dist=loadfile \
117
+ -s -v -k "not Flax and not Onnx and $pattern" \
118
+ --make-reports=tests_pipeline_${{ matrix.module }}_cuda \
119
+ tests/pipelines/${{ matrix.module }}
120
+ fi
114
121
115
122
- name : Failure short reports
116
123
if : ${{ failure() }}
You can’t perform that action at this time.
0 commit comments