Skip to content

Commit

Permalink
ci: fix postgresql env file in codecov.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jason810496 committed Jul 14, 2024
1 parent 61d22a0 commit 435c46a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
- name: Install dependencies
run: poetry install
- name: Start PostgreSQL
run: make start-db
run: |
cp pgmq_postgres.template.env pgmq_postgres.env
make start-db
- name: Run tests and collect coverage
run: poetry run pytest tests --cov=pgmq_sqlalchemy.queue --cov-report=xml
- name: Upload coverage reports to Codecov with GitHub Action
Expand Down

0 comments on commit 435c46a

Please sign in to comment.