Skip to content

Commit

Permalink
Install dependencies before populating the database
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Apr 17, 2024
1 parent b9bb333 commit e2f5bd1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,18 @@ jobs:
env:
PGSERVICE: ${{ steps.postgres.outputs.service-name }}

- name: Install dependencies
run: |
pip install --upgrade wheel pip setuptools
pip install .
- name: Populate database
run: |
cd tests/scripts
python create_test_database.py
env:
PGSERVICE: ${{ steps.postgres.outputs.service-name }}

- name: Install dependencies
run: |
pip install --upgrade wheel pip setuptools
pip install .
- name: Test with pytest
run: |
pip install pytest pytest-sugar pytest-cov coverage
Expand Down

0 comments on commit e2f5bd1

Please sign in to comment.