-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,12 +35,12 @@ jobs: | |
- name: Lint app/ with flake8 | ||
run: | | ||
# exit-zero treats all errors as warnings. | ||
flake8 app/ --exit-zero | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ximenesuk
Collaborator
|
||
flake8 app/ | ||
- name: Lint test/ with flake8 | ||
run: | | ||
# exit-zero treats all errors as warnings. | ||
flake8 test/ --exit-zero | ||
flake8 test/ | ||
- name: Test with pytest | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You should be able to combine these two uses of flake8: