From 305e5cdf55f68e599be2f006ccd1829bed9be76d Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Thu, 20 Aug 2020 21:21:00 +0200 Subject: [PATCH] That didn't work ... trying something else --- .github/workflows/pytest_cov.yml | 1 - .github/workflows/syntax.yml | 14 -------------- 2 files changed, 15 deletions(-) diff --git a/.github/workflows/pytest_cov.yml b/.github/workflows/pytest_cov.yml index bc997074..593a1a79 100644 --- a/.github/workflows/pytest_cov.yml +++ b/.github/workflows/pytest_cov.yml @@ -6,7 +6,6 @@ on: jobs: pyTestCov: - needs: checkSyntax runs-on: ubuntu-latest steps: - name: Python Setup diff --git a/.github/workflows/syntax.yml b/.github/workflows/syntax.yml index 51aae813..20736e91 100644 --- a/.github/workflows/syntax.yml +++ b/.github/workflows/syntax.yml @@ -23,20 +23,6 @@ jobs: run: | flake8 nw --count --select=E9,F63,F7,F82 --show-source --statistics flake8 tests --count --select=E9,F63,F7,F82 --show-source --statistics - - checkStyle: - needs: checkSyntax - runs-on: ubuntu-latest - steps: - - name: Python Setup - uses: actions/setup-python@v1 - with: - python-version: 3.7 - architecture: x64 - - name: Checkout Source - uses: actions/checkout@v2 - - name: Install flake8 - run: pip install flake8 - name: Coding Style Violations run: | flake8 nw --count --max-line-length=99 --ignore E203,E221,E226,E241,E251,E261,E266,E302,E305 --show-source --statistics