From 6ce272c87dd9f3ccb967f260fdee612f3d75d34e Mon Sep 17 00:00:00 2001 From: Sverre Nystad Date: Tue, 12 Dec 2023 22:47:57 +0100 Subject: [PATCH] Feat: remove linter and coverage rapport --- .github/workflows/python-package.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 985e1ad..85b4d3c 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -27,21 +27,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Lint with flake8 - run: | - # 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: | - pytest -m "not apitest" --cov - - name: Generate coverage report - run: | - coverage xml - + pytest - name: Check if CODECOV_TOKEN exists id: check-secret run: |