Skip to content

Commit

Permalink
continue on error and add coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
pcriadoperez committed Oct 27, 2024
1 parent 57fd79b commit d66b684
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
run: pip install ruff
- name: Lint code with Ruff
run: ruff check --output-format=github --target-version=py39 .
continue-on-error: true # TODO: delete once ruff errors are fixed
- name: Check code formatting with Ruff
run: ruff format --check .
continue-on-error: true # TODO: delete once ruff errors are fixed
Expand Down Expand Up @@ -59,3 +60,10 @@ jobs:
run: pyright
- name: Test with tox
run: tox -e py
finish:
needs: build
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
3 changes: 1 addition & 2 deletions test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ pytest
pytest-asyncio
pytest-cov
pytest-flake8
python-coveralls
requests-mock
tox
setuptools
aioresponses
aioresponses

0 comments on commit d66b684

Please sign in to comment.