From 63732add94629e4e92aa3f1c9b9e65014866433d Mon Sep 17 00:00:00 2001 From: Cotton Beckfield <6434246+cottonbeckfield@users.noreply.github.com> Date: Mon, 20 Jan 2020 02:27:38 -0800 Subject: [PATCH] Update github workflow to remove linter --- .github/workflows/pythonapp.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 5639973..d47a3b7 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -17,13 +17,6 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt - - name: Lint with flake8 - run: | - pip install flake8 - # stop the build if there are Python syntax errors or undefined names - 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 - name: Test with pytest run: | pip install pytest