Skip to content

Commit

Permalink
Updated ci config. Renamed and moved linting up. Also set fail under …
Browse files Browse the repository at this point in the history
…threshold to 9
  • Loading branch information
danyoungday committed Mar 22, 2024
1 parent 2a86f5b commit 4fb6f99
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/eluc.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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" ./*

0 comments on commit 4fb6f99

Please sign in to comment.