Skip to content

Commit

Permalink
[coverage]: Use pip to install package
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauch committed May 22, 2024
1 parent 232fb28 commit 935186c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest-cov codecov
python setup.py develop easy_install "catmux[test]"
pip install pytest-cov codecov coverage
pip install -e .[test]
- name: Test with pytest
run: |
pytest --cov=catmux --cov-report=xml .
coverage run --source=catmux -m pytest && coverage report
coverage xml -o coverage.xml
- name: Run example
run: |
catmux_create_session -d catmux/resources/example_session.yaml
Expand Down

0 comments on commit 935186c

Please sign in to comment.