Skip to content

Commit

Permalink
fix syntax error in the --exclude argument of flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bobcheng15 committed Dec 14, 2023
1 parent 55202c5 commit 6442eb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:
run: |
conda install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude venv peak lassen
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude venv,peak,lassen
# 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 --exclude venv peak lassen
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude venv,peak,lassen
- name: Python style checking flake8
run: |
flake8 . --count --select=E,W --statistics --ignore=W503,W504 --max-line-length=127 --exclude venv peak lassen
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 6442eb3

Please sign in to comment.