Skip to content

Commit

Permalink
PR builder fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Azulinho committed Nov 23, 2021
1 parent 517e328 commit a81cbf4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,20 @@ jobs:
uses: actions/checkout@v2

- name: setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: pip install
run: |
set -e
pip install --upgrade pip
pip install wheel
pip install -r requirements.txt
pip installs requirements-dev.txt
- name: pylint
run: pylint app.pyt
run: pylint app.py

- name: pytest
run: pytest tests/
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ disable = [
"too-many-public-methods",
"too-many-return-statements",
"too-many-instance-attributes",
"too-many-arguments"
"fixme",
"too-many-arguments",
"fixme"
]

1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ typing-extensions==3.10.0.2
urllib3-mock==0.3.3
types-PyYAML==6.0.0
pylint
coverage

0 comments on commit a81cbf4

Please sign in to comment.