Skip to content

Commit 2f09bdd

Browse files
authored
Fixing badge 0 percent (#19)
* Fixing badge in README Trying to change actions to fix pipeline problem with 0% * Fix missing editable flag in pipeline actions Add coverage files to gitignore
1 parent 0b2c7f7 commit 2f09bdd

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/actions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: |
2323
pip install uv
2424
uv pip install coveralls --system
25-
uv pip install '.[dev]' --system
25+
uv pip install -e '.[dev]' --system
2626
- name: mypy
2727
run: |
2828
python -m mypy --ignore-missing-imports --follow-imports=silent --no-strict-optional src/pyssmf tests
@@ -32,8 +32,8 @@ jobs:
3232
- name: Pytest coverage comment
3333
uses: MishaKav/pytest-coverage-comment@main
3434
with:
35-
pytest-coverage-path: pytest-coverage.txt
36-
junitxml-path: pytest.xml
35+
pytest-coverage-path: ./pytest-coverage.txt
36+
junitxml-path: ./pytest.xml
3737
- name: Submit to coveralls
3838
continue-on-error: true
3939
env:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ htmlcov/
4242
.cache
4343
nosetests.xml
4444
coverage.xml
45+
pytest.xml
46+
pytest-coverage*
4547
*.cover
4648
*.py,cover
4749
.hypothesis/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Coverage Status](https://coveralls.io/repos/github/JosePizarro3/pySSMF/badge.svg?branch=develop)](https://coveralls.io/github/JosePizarro3/pySSMF?branch=develop)
1+
![](https://coveralls.io/repos/github/JosePizarro3/pySSMF/badge.svg?branch=develop)
22

33
# pySSMF
44

0 commit comments

Comments
 (0)