Skip to content

Commit

Permalink
Add basic pylint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
m-naumann committed Jan 16, 2024
1 parent 088a964 commit a2dd321
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- name: run black
run: black --check .

- name: run pylint for mdp folder
run: pylint src/behavior_generation_lecture_python/mdp --errors-only

- name: test
run: pytest

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ dependencies = [
dev = [
"black[jupyter]==22.3.0",
"pytest",
"pytest-cov>=3.0.0"
"pytest-cov>=3.0.0",
"pylint"
]
docs = [
"mkdocs-material",
Expand Down

0 comments on commit a2dd321

Please sign in to comment.