Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Dec 26, 2023
1 parent 70875e6 commit 543a84b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ jobs:
pip install pytest-cov
pip install coveralls
pip install .
- name: Pylint
if: ${{ ( matrix.os != 'windows-latest' ) }}
run: pylint -E --disable=E1101 py/minimint/*py
- name: Test
run: |
pytest --cov=minimint -s
pylint -E --disable=E1101 py/minimint/*py
run: pytest --cov=minimint -s
- name: Coveralls
if: ${{ success() }}
if: ${{ success() && (matrix.os != 'windows-latest') }}
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 543a84b

Please sign in to comment.