-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove coverage generation as codecov seems to do it automatically
- Loading branch information
1 parent
dd9f407
commit 26e83b3
Showing
1 changed file
with
3 additions
and
20 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 |
---|---|---|
|
@@ -18,28 +18,11 @@ jobs: | |
- name: Check out the codebase. | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up python. | ||
uses: actions/setup-python@v5 | ||
- name: Run codecov. | ||
uses: codecov/[email protected] | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Upgrade pip. | ||
run: > | ||
python -m pip install --upgrade pip | ||
- name: Install package locally. | ||
run: > | ||
pip install .[dev] | ||
- name: Generate coverage report. | ||
run: > | ||
pytest | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
- name: List content of folder. | ||
run: > | ||
ls -la | ||
- name: Run codecov. | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |