From 4de7a771b95696369842a145ad6fbe6a6159a7fe Mon Sep 17 00:00:00 2001 From: saxon-s Date: Thu, 30 Apr 2020 15:44:10 -0700 Subject: [PATCH] Chg: disable flake8 linting in CI workflow --- .github/workflows/py2-gourmet.yml | 6 +++--- .github/workflows/py3-migration.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/py2-gourmet.yml b/.github/workflows/py2-gourmet.yml index 541db98a6..b2edecc5e 100644 --- a/.github/workflows/py2-gourmet.yml +++ b/.github/workflows/py2-gourmet.yml @@ -1,7 +1,7 @@ # This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions -name: Python application +name: py2-gourmet on: push: @@ -29,9 +29,9 @@ jobs: - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + # flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | # pytest diff --git a/.github/workflows/py3-migration.yml b/.github/workflows/py3-migration.yml index 0d68f65af..775c76c4c 100644 --- a/.github/workflows/py3-migration.yml +++ b/.github/workflows/py3-migration.yml @@ -28,9 +28,9 @@ jobs: - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + # flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | # pip install pytest