From bbcbb16a2bcc4259d1f5d24d82744623162ae6fd Mon Sep 17 00:00:00 2001 From: gracieflores <53153376+gracieflores@users.noreply.github.com> Date: Wed, 22 Jun 2022 12:02:46 -0500 Subject: [PATCH] add more explanation to comments --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4338ffa..280c5d1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: |