You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ jobs:
119
119
- name: Test
120
120
id: test
121
121
run: |
122
-
poetry run pytest -m "not (tensorflow or benchmark or index or jax)" --cov=docarray --cov-report=xml ${{ matrix.test-path }} --ignore=tests/integrations/store/test_jac.py
122
+
poetry run pytest -m "not (tensorflow or benchmark or index or jax)" --cov=docarray --cov-report=xml -v -s ${{ matrix.test-path }} --ignore=tests/integrations/store/test_jac.py
123
123
echo "flag it as docarray for codeoverage"
124
124
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
125
125
timeout-minutes: 30
@@ -167,7 +167,7 @@ jobs:
167
167
- name: Test
168
168
id: test
169
169
run: |
170
-
poetry run pytest -m 'proto' --cov=docarray --cov-report=xml tests
170
+
poetry run pytest -m 'proto' --cov=docarray --cov-report=xml -v -s tests
171
171
echo "flag it as docarray for codeoverage"
172
172
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
173
173
timeout-minutes: 30
@@ -217,7 +217,7 @@ jobs:
217
217
- name: Test
218
218
id: test
219
219
run: |
220
-
poetry run pytest -m 'index and not elasticv8' --cov=docarray --cov-report=xml tests/index/${{ matrix.db_test_folder }}
220
+
poetry run pytest -m 'index and not elasticv8' --cov=docarray --cov-report=xml -v -s tests/index/${{ matrix.db_test_folder }}
221
221
echo "flag it as docarray for codeoverage"
222
222
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
223
223
timeout-minutes: 30
@@ -267,7 +267,7 @@ jobs:
267
267
- name: Test
268
268
id: test
269
269
run: |
270
-
poetry run pytest -m 'index and elasticv8' --cov=docarray --cov-report=xml tests
270
+
poetry run pytest -m 'index and elasticv8' --cov=docarray --cov-report=xml -v -s tests
271
271
echo "flag it as docarray for codeoverage"
272
272
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
273
273
timeout-minutes: 30
@@ -316,7 +316,7 @@ jobs:
316
316
- name: Test
317
317
id: test
318
318
run: |
319
-
poetry run pytest -m 'tensorflow' --cov=docarray --cov-report=xml tests
319
+
poetry run pytest -m 'tensorflow' --cov=docarray --cov-report=xml -v -s tests
320
320
echo "flag it as docarray for codeoverage"
321
321
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
322
322
timeout-minutes: 30
@@ -362,7 +362,7 @@ jobs:
362
362
- name: Test
363
363
id: test
364
364
run: |
365
-
poetry run pytest -m 'jax' --cov=docarray --cov-report=xml tests
365
+
poetry run pytest -m 'jax' --cov=docarray --cov-report=xml -v -s tests
366
366
echo "flag it as docarray for codeoverage"
367
367
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
368
368
timeout-minutes: 30
@@ -406,7 +406,7 @@ jobs:
406
406
- name: Test
407
407
id: test
408
408
run: |
409
-
poetry run pytest -m 'benchmark' --cov=docarray --cov-report=xml tests
409
+
poetry run pytest -m 'benchmark' --cov=docarray --cov-report=xml -v -s tests
0 commit comments