Skip to content

Commit 8e2c475

Browse files
committed
ci: fix some ci
1 parent b816ab9 commit 8e2c475

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/add_license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v3
1717
with:
18-
python-version: 3.10
18+
python-version: "3.10"
1919

2020
- name: Run add_license.sh and check for changes
2121
id: add_license

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
- name: Test
120120
id: test
121121
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
123123
echo "flag it as docarray for codeoverage"
124124
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
125125
timeout-minutes: 30
@@ -167,7 +167,7 @@ jobs:
167167
- name: Test
168168
id: test
169169
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
171171
echo "flag it as docarray for codeoverage"
172172
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
173173
timeout-minutes: 30
@@ -217,7 +217,7 @@ jobs:
217217
- name: Test
218218
id: test
219219
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 }}
221221
echo "flag it as docarray for codeoverage"
222222
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
223223
timeout-minutes: 30
@@ -267,7 +267,7 @@ jobs:
267267
- name: Test
268268
id: test
269269
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
271271
echo "flag it as docarray for codeoverage"
272272
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
273273
timeout-minutes: 30
@@ -316,7 +316,7 @@ jobs:
316316
- name: Test
317317
id: test
318318
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
320320
echo "flag it as docarray for codeoverage"
321321
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
322322
timeout-minutes: 30
@@ -362,7 +362,7 @@ jobs:
362362
- name: Test
363363
id: test
364364
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
366366
echo "flag it as docarray for codeoverage"
367367
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
368368
timeout-minutes: 30
@@ -406,7 +406,7 @@ jobs:
406406
- name: Test
407407
id: test
408408
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
410410
echo "flag it as docarray for codeoverage"
411411
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
412412
timeout-minutes: 30

0 commit comments

Comments
 (0)