From b96b911eb3de7937e2e96cc144ea5226c32d0599 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Thu, 1 Jul 2021 09:50:43 -0700 Subject: Remove codespell and flake8 complexity check (#335) I think the value provided by codespell is low and not worth the CPU cycles to run it on ever change. Also, the flake8 complexity check isn't particularly helpful (in my opinion). --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88ed440..16c5a5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,9 +28,8 @@ jobs: - name: Lint if: matrix.python-version == '2.7' || matrix.python-version == '3.9' run: | - pip install codespell flake8 - codespell . --skip=./.*,./pymemcache/test/certs --quiet-level=2 - flake8 --max-complexity=18 . + pip install flake8 + flake8 python setup.py check --restructuredtext - name: Disable IPv6 localhost run: | -- cgit v1.2.1