From e707c5564edd75286762a9ed92d9d159a5c2ff58 Mon Sep 17 00:00:00 2001 From: Dax Pryce Date: Thu, 13 Oct 2022 14:06:15 -0700 Subject: [PATCH] Update validate_on_push.yml --- .github/workflows/validate_on_push.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/validate_on_push.yml b/.github/workflows/validate_on_push.yml index 9359ffc..4e18b74 100644 --- a/.github/workflows/validate_on_push.yml +++ b/.github/workflows/validate_on_push.yml @@ -21,18 +21,6 @@ jobs: run: | python -m pip install --upgrade pip setuptools wheel 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 ./topologic ./tests --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 ./topologic ./tests --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Test with pytest - run: | - pytest -v tests topologic --doctest-modules - env: - SKIP_TEST_35: true - name: Build with setuptools run: | python setup.py build sdist