Skip to content

Commit 4da3ce4

Browse files
chore: Add Coveralls to CI (#329)
1 parent d4f9794 commit 4da3ce4

File tree

3 files changed

+38
-4
lines changed

3 files changed

+38
-4
lines changed

.github/workflows/ci.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,11 @@ jobs:
3939
- name: Run Tests
4040
run: make run_tests
4141

42-
- name: Upload Coverage
43-
uses: codecov/codecov-action@v5
42+
- name: Upload coverage to Coveralls
43+
uses: coverallsapp/github-action@v2
44+
with:
45+
github-token: ${{ secrets.GITHUB_TOKEN }}
46+
4447
release-please:
4548
needs: test
4649
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository_owner == 'supabase' }}

poetry.lock

+31-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,14 @@ python-dotenv = "^1.0.0"
3737
Sphinx = "^7.1.2"
3838
sphinx-press-theme = "^0.9.1"
3939
unasync-cli = "^0.0.9"
40+
coveralls = "^1.8.0"
4041

4142
[tool.poetry.group.dev.dependencies]
4243
sphinx-toolbox = "^3.4.0"
4344

4445
[tool.pytest.ini_options]
4546
asyncio_mode = "auto"
47+
addopts = "tests"
4648

4749
[build-system]
4850
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)