Skip to content

Commit

Permalink
mod: exclude integrals from flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Steinmetzer committed Nov 5, 2024
1 parent 4947378 commit 2b52800
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --config flake8.ini
# 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
flake10 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --config flake8.ini
- name: Install thermoanalysis
run: |
pip install git+https://github.com/eljost/thermoanalysis.git
Expand Down
2 changes: 2 additions & 0 deletions flake8.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[flake8]
exclude = pysisyphus/wavefunction/ints,pysisyphus/wavefunction/ints_numba

0 comments on commit 2b52800

Please sign in to comment.