We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ed6e2a commit a975eb3Copy full SHA for a975eb3
1 file changed
.github/workflows/ci.yml
@@ -140,12 +140,15 @@ jobs:
140
run: |
141
python -m pip install --upgrade pip
142
pip install -r requirements.txt
143
+ pip install coverage
144
+ pip install coveralls
145
- name: Enable Postgres Trigram Extension
146
147
PGPASSWORD=postgres psql -U postgres -h 127.0.0.1 -p ${{ job.services.postgres.ports[5432] }} -d ci_db_test -c "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";"
148
- name: Test with unittest
149
env:
150
TEST_DATABASE_URL: postgresql://postgres:postgres@localhost/ci_db_test
151
TEST_DATABASE_ASYNC_URL: postgresql+asyncpg://postgres:postgres@localhost/ci_db_test
- run: |
- python -m unittest discover -s ./tests/test_implementations
152
+ run: |
153
+ python -m coverage run -m unittest
154
+ coveralls
0 commit comments