Skip to content

Commit

Permalink
merge coverages
Browse files Browse the repository at this point in the history
  • Loading branch information
jvllmr committed Jan 6, 2024
1 parent 4df9b3e commit 28cf0fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 26 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/coverage.yaml

This file was deleted.

6 changes: 5 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
- name: Install dependencies
run: pdm install --no-lock
- name: Run tests
run: pdm test
run: pdm coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
Test20:
name: Test SA 2.0
runs-on: ubuntu-latest
Expand All @@ -44,3 +46,5 @@ jobs:
run: pip install nox
- name: Run tests
run: pdm test_20
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ def tests(session: nox.Session):
def tests_20(session: nox.Session):
session.run_always("pdm", "install", "--no-lock", external=True)
session.install("sqlalchemy>2.0")
session.run("pytest")
session.run("pdm", "coverage")
session.install("sqlalchemy<2.0")

0 comments on commit 28cf0fb

Please sign in to comment.