From efb229cfcbfa0b7bd7ff6551f30ac93531615d39 Mon Sep 17 00:00:00 2001 From: weslambert Date: Mon, 2 May 2022 16:35:21 -0400 Subject: [PATCH] Update to match configuration in analyzer dir --- .github/workflows/pythontest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythontest.yml b/.github/workflows/pythontest.yml index 47172b141..c0e692730 100644 --- a/.github/workflows/pythontest.yml +++ b/.github/workflows/pythontest.yml @@ -25,7 +25,7 @@ jobs: find . -name requirements.txt -exec pip install -r {} \; - name: Lint with flake8 run: | - flake8 ${{ matrix.python-code-path }} --show-source --max-complexity=10 --doctests --max-line-length=200 --statistics + flake8 ${{ matrix.python-code-path }} --show-source --max-complexity=12 --doctests --max-line-length=200 --statistics - name: Test with pytest run: | pytest ${{ matrix.python-code-path }} --cov=${{ matrix.python-code-path }} --doctest-modules --cov-report=term --cov-fail-under=90 --cov-config=${{ matrix.python-code-path }}/pytest.ini