Skip to content

Commit

Permalink
Fix coveralls and pylint (#26)
Browse files Browse the repository at this point in the history
* Fix coveralls

* Ignore pylint 'unspecified-encoding' warning
  • Loading branch information
JeffLIrion committed Aug 21, 2021
1 parent cccc022 commit 53ed59b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
flake8 graphslam/ && pylint graphslam/ && flake8 tests/ && pylint tests/
- name: Test with unittest
env:
COVERALLS_SERVICE_NAME: github
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
coverage run --source graphslam -m unittest discover -s tests/ -t . && coverage report -m && coveralls
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ disable=print-statement,
import-error,
invalid-name,
unexpected-keyword-arg,
useless-object-inheritance
useless-object-inheritance,
unspecified-encoding

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down

0 comments on commit 53ed59b

Please sign in to comment.