Skip to content

Commit 84f0109

Browse files
committed
fix/updated pyproject and the supabase yml to address CI bug
1 parent 2da7f28 commit 84f0109

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/supabase.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
steps:
4545
- id: set
4646
run: |
47-
echo 'os=${{ github.event_name == 'push' && '["ubuntu-latest"]' || env.TEST_MATRIX_OS }}' >> $GITHUB_OUTPUT
48-
echo 'python-version=${{ github.event_name == 'push' && '["3.10"]' || env.TEST_MATRIX_PYTHON }}' >> $GITHUB_OUTPUT
47+
echo 'os=${{ github.event_name == 'push' && '["ubuntu-latest"]' || env.TEST_MATRIX_OS }}' >> "$GITHUB_OUTPUT"
48+
echo 'python-version=${{ github.event_name == 'push' && '["3.10"]' || env.TEST_MATRIX_PYTHON }}' >> "$GITHUB_OUTPUT"
4949
5050
run:
5151
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}

integrations/supabase/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ ban-relative-imports = "parents"
142142
"tests/**/*" = ["PLR2004", "S101", "TID252", "D", "ANN"]
143143

144144
[tool.coverage.run]
145-
source = ["haystack_integrations"]
145+
source = ["haystack_integrations.document_stores.supabase", "haystack_integrations.components.retrievers.supabase"]
146146
branch = true
147147
parallel = false
148148
relative_files = true

0 commit comments

Comments
 (0)