Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
christinab12 authored Dec 5, 2023
1 parent 1ec2cbb commit 979c175
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,13 @@ jobs:
python -m pip install --upgrade pip
python -m pip install setuptools
pip install pytest
pip install coverage
pip install -e ".[testing]"
working-directory: src/client

- name: Test with pytest
run: pytest
run: |
coverage run -m pytest
working-directory: src/client
env:
PLATFORM: ${{ matrix.platform }}
Expand Down Expand Up @@ -80,11 +82,13 @@ jobs:
python -m pip install --upgrade pip
python -m pip install setuptools
pip install pytest
pip install coverage
pip install -e ".[testing]"
working-directory: src/server

- name: Test with pytest
run: pytest
run: |
coverage run -m pytest
working-directory: src/server
env:
PLATFORM: ${{ matrix.platform }}
Expand Down

0 comments on commit 979c175

Please sign in to comment.