Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci: check v8 tests failing
Signed-off-by: Joan Martinez <[email protected]>
  • Loading branch information
JoanFM committed Feb 12, 2024
commit 966a7da83c99b4c4080bebd282edaf75a3b538d9
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
- name: Test
id: test
run: |
poetry run pytest -m 'index and not elasticv8' --cov=docarray --cov-report=xml tests/index/${{ matrix.db_test_folder }}
poetry run pytest -m 'index and not elasticv8' -s -v --cov=docarray --cov-report=xml tests/index/${{ matrix.db_test_folder }}
echo "flag it as docarray for codeoverage"
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
timeout-minutes: 30
Expand All @@ -242,7 +242,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
python-version: ["3.10"]
pydantic-version: ["pydantic-v2", "pydantic-v1"]
steps:
- uses: actions/[email protected]
Expand All @@ -267,7 +267,7 @@ jobs:
- name: Test
id: test
run: |
poetry run pytest -m 'index and elasticv8' --cov=docarray --cov-report=xml tests
poetry run pytest -m 'index and elasticv8' -s -v --cov=docarray --cov-report=xml tests
echo "flag it as docarray for codeoverage"
echo "codecov_flag=docarray" >> $GITHUB_OUTPUT
timeout-minutes: 30
Expand Down