Skip to content

Commit

Permalink
add more explanation to comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gracieflores committed Jun 22, 2022
1 parent a4f0761 commit bbcbb16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
pip install pytest flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
# Python syntax errors or undefined names will stop the build completely.
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
# exit-zero will still allow the tests to pass, with these types of errors as warnings.
flake8 pypairtree tests setup.py --count --exit-zero --max-line-length=99 --statistics
- name: Run the tests
run: |
Expand Down

0 comments on commit bbcbb16

Please sign in to comment.