Skip to content

Commit

Permalink
Fix missing editable flag in pipeline actions
Browse files Browse the repository at this point in the history
Add coverage files to gitignore
  • Loading branch information
JosePizarro3 committed Jun 11, 2024
1 parent ec0e7e5 commit 203013f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
pip install uv
uv pip install coveralls --system
uv pip install '.[dev]' --system
uv pip install -e '.[dev]' --system
- name: mypy
run: |
python -m mypy --ignore-missing-imports --follow-imports=silent --no-strict-optional src/pyssmf tests
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ htmlcov/
.cache
nosetests.xml
coverage.xml
pytest.xml
pytest-coverage*
*.cover
*.py,cover
.hypothesis/
Expand Down

1 comment on commit 203013f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/pyssmf
   hopping_pruning.py36683%32, 62–65, 75, 89–90
   input.py726115%28–29, 65–150, 156–157, 169–188
   parsing.py1415263%100–101, 163, 179, 182, 186–189, 194, 197–210, 213–249, 252, 255, 258, 261–267
   runner.py846621%36–39, 46–62, 68–74, 80–88, 113–127, 156–176, 183–200, 203–210
   tb_hamiltonian.py775529%41–47, 57–75, 85, 95–98, 108, 136–147, 150–159, 171–193, 206
   visualization.py575111%35–82, 94–130, 143–153
src/pyssmf/utils
   utils.py21671%47–49, 68–71
TOTAL51429742% 

Tests Skipped Failures Errors Time
5 0 💤 0 ❌ 0 🔥 0.321s ⏱️

Please sign in to comment.