diff --git a/.github/workflows/eluc.yml b/.github/workflows/eluc.yml index 733762c..d5a9ec1 100644 --- a/.github/workflows/eluc.yml +++ b/.github/workflows/eluc.yml @@ -1,6 +1,6 @@ # This runs the unit tests for the ELUC use case -name: ELUC Use Case Python Unit Tests +name: ELUC Use Case on: push: @@ -29,7 +29,8 @@ jobs: python -m pip install --upgrade pip pip install pylint if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Lint with PyLint + run: pylint --ignore="demo" --recursive=y --fail-under=9 ./* - name: Run unit tests run: python -m unittest - - name: Lint with PyLint - run: pylint --ignore="demo" ./* +