Skip to content

Commit

Permalink
Fixing pipeline and README
Browse files Browse the repository at this point in the history
  • Loading branch information
JosePizarro3 committed Jun 10, 2024
1 parent cb6e9d3 commit 360bea2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
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 change: 0 additions & 1 deletion src/pyssmf/visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#

import numpy as np
import PyQt5 # noqa: F401

import matplotlib.pyplot as plt
from matplotlib.widgets import Slider
Expand Down

1 comment on commit 360bea2

@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.py72720%17–188
   parsing.py1411410%17–267
   runner.py84840%17–210
   schema.py23230%17–163
   tb_hamiltonian.py77770%17–205
   utils.py21210%17–71
   visualization.py57570%17–153
TOTAL5135130% 

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

Please sign in to comment.