Skip to content

Commit

Permalink
Added missing pip install coveralls in actions
Browse files Browse the repository at this point in the history
Fix README
  • Loading branch information
JosePizarro3 committed Jun 10, 2024
1 parent 5cb2610 commit 40b51d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- name: Install dependencies
run: |
pip install uv
uv pip install coveralls --system
uv pip install '.[dev]' --system
- name: mypy
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Our CI/CD pipeline produces a more comprehensive test report using `coverage` an

```sh
uv pip install coverage coveralls
python -m pytest --cov=src tests
python -m pytest --cov=src tests
```

### Run linting and auto-formatting
Expand Down

1 comment on commit 40b51d2

@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
   __init__.py220%17–18
   hopping_pruning.py36360%17–94
   input.py73730%17–190
   parsing.py1411410%17–267
   runner.py1001000%17–247
   schema.py23230%17–163
   tb_hamiltonian.py77770%17–205
   visualization.py60600%17–159
src/pyssmf/utils
   __init__.py110%17
   utils.py21210%17–71
TOTAL5345340% 

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

Please sign in to comment.