Skip to content

Commit

Permalink
add peak and lassen to the exclude list when running flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bobcheng15 committed Dec 14, 2023
1 parent 973b47d commit 58c43a2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ jobs:
pip install -r requirements.txt
git clone https://github.com/cdonovick/peak.git
pip install -e peak
rm -rf peak
git clone https://github.com/StanfordAHA/lassen.git
pip install -e lassen
rm -rf lassen
pip install -e .
echo $VIRTUAL_ENV/bin >> $GITHUB_PATH
- name: Test all (non SuiteSparse and Frostt) tests with pytest
Expand All @@ -55,7 +53,7 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude venv
- name: Python style checking flake8
run: |
flake8 . --count --select=E,W --statistics --ignore=W503,W504 --max-line-length=127 --exclude venv
flake8 . --count --select=E,W --statistics --ignore=W503,W504 --max-line-length=127 --exclude venv peak lassen
- name: Check SAM Simulator generating script
run: |
make tests

0 comments on commit 58c43a2

Please sign in to comment.