Skip to content

Commit

Permalink
mod: run pytest w/ --color=yes in github actions
Browse files Browse the repository at this point in the history
fix flake10/flake8 typo
  • Loading branch information
Johannes Steinmetzer committed Nov 5, 2024
1 parent 2b52800 commit ca7b83d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# stop the build if there are Python syntax errors or undefined names
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
flake10 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --config flake8.ini
flake8 . --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 All @@ -62,6 +62,7 @@ jobs:
run: >
pytest -v
--cov=pysisyphus --cov-config .coveragerc --cov-report xml --cov-report term
--color=yes
--show-capture=no
--durations=0
-m "not benchmark and not skip_ci"
Expand Down

0 comments on commit ca7b83d

Please sign in to comment.