Skip to content

Commit 0a8ec01

Browse files
committed
update
1 parent 0c35b58 commit 0a8ec01

File tree

8 files changed

+30
-30
lines changed

8 files changed

+30
-30
lines changed

.github/workflows/nightly_tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
CUBLAS_WORKSPACE_CONFIG: :16:8
8585
run: |
8686
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
87-
-s -v -k "not Flax and not Onnx" \
87+
-k "not Flax and not Onnx" \
8888
--make-reports=tests_pipeline_${{ matrix.module }}_cuda \
8989
--report-log=tests_pipeline_${{ matrix.module }}_cuda.log \
9090
tests/pipelines/${{ matrix.module }}
@@ -138,7 +138,7 @@ jobs:
138138
CUBLAS_WORKSPACE_CONFIG: :16:8
139139
run: |
140140
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
141-
-s -v -k "not Flax and not Onnx" \
141+
-k "not Flax and not Onnx" \
142142
--make-reports=tests_torch_${{ matrix.module }}_cuda \
143143
--report-log=tests_torch_${{ matrix.module }}_cuda.log \
144144
tests/${{ matrix.module }}
@@ -151,7 +151,7 @@ jobs:
151151
CUBLAS_WORKSPACE_CONFIG: :16:8
152152
run: |
153153
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
154-
-s -v --make-reports=examples_torch_cuda \
154+
--make-reports=examples_torch_cuda \
155155
--report-log=examples_torch_cuda.log \
156156
examples/
157157
@@ -198,7 +198,7 @@ jobs:
198198
HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
199199
RUN_COMPILE: yes
200200
run: |
201-
pytest -n 1 --max-worker-restart=0 --dist=loadfile -s -v -k "compile" --make-reports=tests_torch_compile_cuda tests/
201+
pytest -n 1 --max-worker-restart=0 --dist=loadfile -k "compile" --make-reports=tests_torch_compile_cuda tests/
202202
- name: Failure short reports
203203
if: ${{ failure() }}
204204
run: cat reports/tests_torch_compile_cuda_failures_short.txt
@@ -293,7 +293,7 @@ jobs:
293293
CUBLAS_WORKSPACE_CONFIG: :16:8
294294
run: |
295295
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
296-
-s -v -k "not Flax and not Onnx" \
296+
-k "not Flax and not Onnx" \
297297
--make-reports=tests_torch_minimum_version_cuda \
298298
tests/models/test_modeling_common.py \
299299
tests/pipelines/test_pipelines_common.py \
@@ -531,7 +531,7 @@ jobs:
531531
# HF_HOME: /System/Volumes/Data/mnt/cache
532532
# HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
533533
# run: |
534-
# ${CONDA_RUN} pytest -n 1 -s -v --make-reports=tests_torch_mps \
534+
# ${CONDA_RUN} pytest -n 1 --make-reports=tests_torch_mps \
535535
# --report-log=tests_torch_mps.log \
536536
# tests/
537537
# - name: Failure short reports
@@ -587,7 +587,7 @@ jobs:
587587
# HF_HOME: /System/Volumes/Data/mnt/cache
588588
# HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
589589
# run: |
590-
# ${CONDA_RUN} pytest -n 1 -s -v --make-reports=tests_torch_mps \
590+
# ${CONDA_RUN} pytest -n 1 --make-reports=tests_torch_mps \
591591
# --report-log=tests_torch_mps.log \
592592
# tests/
593593
# - name: Failure short reports

.github/workflows/pr_modular_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
if: ${{ matrix.config.framework == 'pytorch_pipelines' }}
121121
run: |
122122
pytest -n 8 --max-worker-restart=0 --dist=loadfile \
123-
-s -v -k "not Flax and not Onnx" \
123+
-k "not Flax and not Onnx" \
124124
--make-reports=tests_${{ matrix.config.report }} \
125125
tests/modular_pipelines
126126

.github/workflows/pr_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ jobs:
126126
if: ${{ matrix.config.framework == 'pytorch_pipelines' }}
127127
run: |
128128
pytest -n 8 --max-worker-restart=0 --dist=loadfile \
129-
-s -v -k "not Flax and not Onnx" \
129+
-k "not Flax and not Onnx" \
130130
--make-reports=tests_${{ matrix.config.report }} \
131131
tests/pipelines
132132
133133
- name: Run fast PyTorch Model Scheduler CPU tests
134134
if: ${{ matrix.config.framework == 'pytorch_models' }}
135135
run: |
136136
pytest -n 4 --max-worker-restart=0 --dist=loadfile \
137-
-s -v -k "not Flax and not Onnx and not Dependency" \
137+
-k "not Flax and not Onnx and not Dependency" \
138138
--make-reports=tests_${{ matrix.config.report }} \
139139
tests/models tests/schedulers tests/others
140140
@@ -255,11 +255,11 @@ jobs:
255255
- name: Run fast PyTorch LoRA tests with PEFT
256256
run: |
257257
pytest -n 4 --max-worker-restart=0 --dist=loadfile \
258-
-s -v \
258+
\
259259
--make-reports=tests_peft_main \
260260
tests/lora/
261261
pytest -n 4 --max-worker-restart=0 --dist=loadfile \
262-
-s -v \
262+
\
263263
--make-reports=tests_models_lora_peft_main \
264264
tests/models/ -k "lora"
265265

.github/workflows/pr_tests_gpu.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,13 @@ jobs:
151151
run: |
152152
if [ "${{ matrix.module }}" = "ip_adapters" ]; then
153153
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
154-
-s -v -k "not Flax and not Onnx" \
154+
-k "not Flax and not Onnx" \
155155
--make-reports=tests_pipeline_${{ matrix.module }}_cuda \
156156
tests/pipelines/${{ matrix.module }}
157157
else
158158
pattern=$(cat ${{ steps.extract_tests.outputs.pattern_file }})
159159
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
160-
-s -v -k "not Flax and not Onnx and $pattern" \
160+
-k "not Flax and not Onnx and $pattern" \
161161
--make-reports=tests_pipeline_${{ matrix.module }}_cuda \
162162
tests/pipelines/${{ matrix.module }}
163163
fi
@@ -222,10 +222,10 @@ jobs:
222222
run: |
223223
pattern=$(cat ${{ steps.extract_tests.outputs.pattern_file }})
224224
if [ -z "$pattern" ]; then
225-
pytest -n 1 -sv --max-worker-restart=0 --dist=loadfile -k "not Flax and not Onnx" tests/${{ matrix.module }} \
225+
pytest -n 1 --max-worker-restart=0 --dist=loadfile -k "not Flax and not Onnx" tests/${{ matrix.module }} \
226226
--make-reports=tests_torch_cuda_${{ matrix.module }}
227227
else
228-
pytest -n 1 -sv --max-worker-restart=0 --dist=loadfile -k "not Flax and not Onnx and $pattern" tests/${{ matrix.module }} \
228+
pytest -n 1 --max-worker-restart=0 --dist=loadfile -k "not Flax and not Onnx and $pattern" tests/${{ matrix.module }} \
229229
--make-reports=tests_torch_cuda_${{ matrix.module }}
230230
fi
231231
@@ -274,7 +274,7 @@ jobs:
274274
HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
275275
run: |
276276
uv pip install ".[training]"
277-
pytest -n 1 --max-worker-restart=0 --dist=loadfile -s -v --make-reports=examples_torch_cuda examples/
277+
pytest -n 1 --max-worker-restart=0 --dist=loadfile --make-reports=examples_torch_cuda examples/
278278
279279
- name: Failure short reports
280280
if: ${{ failure() }}

.github/workflows/push_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
CUBLAS_WORKSPACE_CONFIG: :16:8
8888
run: |
8989
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
90-
-s -v -k "not Flax and not Onnx" \
90+
-k "not Flax and not Onnx" \
9191
--make-reports=tests_pipeline_${{ matrix.module }}_cuda \
9292
tests/pipelines/${{ matrix.module }}
9393
- name: Failure short reports
@@ -141,7 +141,7 @@ jobs:
141141
CUBLAS_WORKSPACE_CONFIG: :16:8
142142
run: |
143143
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
144-
-s -v -k "not Flax and not Onnx" \
144+
-k "not Flax and not Onnx" \
145145
--make-reports=tests_torch_cuda_${{ matrix.module }} \
146146
tests/${{ matrix.module }}
147147
@@ -189,7 +189,7 @@ jobs:
189189
HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
190190
RUN_COMPILE: yes
191191
run: |
192-
pytest -n 1 --max-worker-restart=0 --dist=loadfile -s -v -k "compile" --make-reports=tests_torch_compile_cuda tests/
192+
pytest -n 1 --max-worker-restart=0 --dist=loadfile -k "compile" --make-reports=tests_torch_compile_cuda tests/
193193
- name: Failure short reports
194194
if: ${{ failure() }}
195195
run: cat reports/tests_torch_compile_cuda_failures_short.txt
@@ -230,7 +230,7 @@ jobs:
230230
env:
231231
HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
232232
run: |
233-
pytest -n 1 --max-worker-restart=0 --dist=loadfile -s -v -k "xformers" --make-reports=tests_torch_xformers_cuda tests/
233+
pytest -n 1 --max-worker-restart=0 --dist=loadfile -k "xformers" --make-reports=tests_torch_xformers_cuda tests/
234234
- name: Failure short reports
235235
if: ${{ failure() }}
236236
run: cat reports/tests_torch_xformers_cuda_failures_short.txt
@@ -273,7 +273,7 @@ jobs:
273273
HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
274274
run: |
275275
uv pip install ".[training]"
276-
pytest -n 1 --max-worker-restart=0 --dist=loadfile -s -v --make-reports=examples_torch_cuda examples/
276+
pytest -n 1 --max-worker-restart=0 --dist=loadfile --make-reports=examples_torch_cuda examples/
277277
278278
- name: Failure short reports
279279
if: ${{ failure() }}

.github/workflows/push_tests_fast.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
if: ${{ matrix.config.framework == 'pytorch' }}
7171
run: |
7272
pytest -n 4 --max-worker-restart=0 --dist=loadfile \
73-
-s -v -k "not Flax and not Onnx" \
73+
-k "not Flax and not Onnx" \
7474
--make-reports=tests_${{ matrix.config.report }} \
7575
tests/
7676

.github/workflows/push_tests_mps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
HF_HOME: /System/Volumes/Data/mnt/cache
5858
HF_TOKEN: ${{ secrets.HF_TOKEN }}
5959
run: |
60-
${CONDA_RUN} python -m pytest -n 0 -s -v --make-reports=tests_torch_mps tests/
60+
${CONDA_RUN} python -m pytest -n 0 --make-reports=tests_torch_mps tests/
6161
6262
- name: Failure short reports
6363
if: ${{ failure() }}

.github/workflows/release_tests_fast.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
CUBLAS_WORKSPACE_CONFIG: :16:8
8585
run: |
8686
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
87-
-s -v -k "not Flax and not Onnx" \
87+
-k "not Flax and not Onnx" \
8888
--make-reports=tests_pipeline_${{ matrix.module }}_cuda \
8989
tests/pipelines/${{ matrix.module }}
9090
- name: Failure short reports
@@ -137,7 +137,7 @@ jobs:
137137
CUBLAS_WORKSPACE_CONFIG: :16:8
138138
run: |
139139
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
140-
-s -v -k "not Flax and not Onnx" \
140+
-k "not Flax and not Onnx" \
141141
--make-reports=tests_torch_${{ matrix.module }}_cuda \
142142
tests/${{ matrix.module }}
143143
@@ -187,7 +187,7 @@ jobs:
187187
CUBLAS_WORKSPACE_CONFIG: :16:8
188188
run: |
189189
pytest -n 1 --max-worker-restart=0 --dist=loadfile \
190-
-s -v -k "not Flax and not Onnx" \
190+
-k "not Flax and not Onnx" \
191191
--make-reports=tests_torch_minimum_cuda \
192192
tests/models/test_modeling_common.py \
193193
tests/pipelines/test_pipelines_common.py \
@@ -240,7 +240,7 @@ jobs:
240240
HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
241241
RUN_COMPILE: yes
242242
run: |
243-
pytest -n 1 --max-worker-restart=0 --dist=loadfile -s -v -k "compile" --make-reports=tests_torch_compile_cuda tests/
243+
pytest -n 1 --max-worker-restart=0 --dist=loadfile -k "compile" --make-reports=tests_torch_compile_cuda tests/
244244
- name: Failure short reports
245245
if: ${{ failure() }}
246246
run: cat reports/tests_torch_compile_cuda_failures_short.txt
@@ -281,7 +281,7 @@ jobs:
281281
env:
282282
HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
283283
run: |
284-
pytest -n 1 --max-worker-restart=0 --dist=loadfile -s -v -k "xformers" --make-reports=tests_torch_xformers_cuda tests/
284+
pytest -n 1 --max-worker-restart=0 --dist=loadfile -k "xformers" --make-reports=tests_torch_xformers_cuda tests/
285285
- name: Failure short reports
286286
if: ${{ failure() }}
287287
run: cat reports/tests_torch_xformers_cuda_failures_short.txt
@@ -326,7 +326,7 @@ jobs:
326326
HF_TOKEN: ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
327327
run: |
328328
uv pip install ".[training]"
329-
pytest -n 1 --max-worker-restart=0 --dist=loadfile -s -v --make-reports=examples_torch_cuda examples/
329+
pytest -n 1 --max-worker-restart=0 --dist=loadfile --make-reports=examples_torch_cuda examples/
330330
331331
- name: Failure short reports
332332
if: ${{ failure() }}

0 commit comments

Comments
 (0)