From e1105154cb65314f3b54d50358667db11af38546 Mon Sep 17 00:00:00 2001 From: pem70 Date: Mon, 22 Jul 2024 14:30:52 -0400 Subject: [PATCH] Update sdk-build.yml Signed-off-by: pem70 --- .github/workflows/sdk-build.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/sdk-build.yml b/.github/workflows/sdk-build.yml index b585fcf5..895a608d 100644 --- a/.github/workflows/sdk-build.yml +++ b/.github/workflows/sdk-build.yml @@ -33,23 +33,11 @@ jobs: - name: Lint with pydoclint run: pydoclint --exclude='.*/build/.*' src - name: Lint with pylint -<<<<<<< HEAD - run: pylint src --disable=all --enable=C0103 --ignore=build - - name: Check and add license headers - run: python scripts/license_header.py src - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - flake8 ./src --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 ./src --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics -======= run: | # check for Python errors pylint src --errors-only --disable=E0401,E0611 --ignore=build # check for lint pylint ./src --disable=all --enable=C0103,C0301 --ignore=build --max-line-length=127 ->>>>>>> function_case - name: Test with pytest run: | coverage run -m pytest ./tests/unit