Skip to content

Commit

Permalink
install wheel in venv
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmc committed Nov 21, 2024
1 parent 4322cfb commit 16c96fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ jobs:
- name: Build package
run: python -m build --wheel

- name: Install wheel
run: pip install dist/*.whl --user

# - name: Type checking
# run: mypy -p dgcv
Expand All @@ -54,11 +52,13 @@ jobs:
- name: Run tests
run: |
source dgcv_venv/bin/activate
pip install dist/*.whl --user
pytest tests
deactivate
- name: Generate coverage
run: |
source dgcv_venv/bin/activate
pip install dist/*.whl --user
pytest --cov=. --cov-report=xml tests
deactivate

0 comments on commit 16c96fe

Please sign in to comment.