-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(workflows): install python project as editable so that coverage ru…
…ns properly
- Loading branch information
1 parent
899220c
commit 9cccada
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,7 @@ jobs: | |
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install Python Dependencies 📦 | ||
run: pdm install --no-editable | ||
run: pdm install | ||
|
||
- name: Check Python Formatting 🖌️ | ||
run: pdm run ruff check . | ||
|
@@ -78,7 +78,7 @@ jobs: | |
run: pdm run mypy . | ||
|
||
- name: Run Python Tests 🧪 | ||
run: pdm run pytest -n auto -d --cov=src/ --cov-report=html --cov-branch --benchmark-disable --benchmark-skip | ||
run: pdm run pytest -n auto -d --cov=src/ --cov-report=lcov --cov-branch --benchmark-disable --benchmark-skip | ||
|
||
- name: Upload Coverage Report 📊 | ||
uses: coverallsapp/[email protected] | ||
|