Skip to content

Commit

Permalink
attempt to unbreak the action
Browse files Browse the repository at this point in the history
  • Loading branch information
TomWagg committed Sep 28, 2023
1 parent 5c5362f commit abb8aa3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,24 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest coverage pytest-xdist nbmake pytest-cov
python -m pip install -e .[test]
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 cogsworth/ --count --select=E9,F63,F7,F82 --show-source --statistics
# 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
- name: Test with pytest and generate coverage report
flake8 cogsworth/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Grab the data you need to test observables
run: |
# prep the data needed for tests
python cogsworth/tests/prep_data.py
- name: Test package with pytest and generate coverage report
run: |
# test with as many cores as possible for speed
pytest cogsworth -n=auto --cov=./ --cov-report=xml
- name: Test the tutorial notebooks
run: |
# test notebooks in addition to the code
pytest -n=auto --nbmake "docs/tutorials"
- name: Get Coverage
Expand Down

0 comments on commit abb8aa3

Please sign in to comment.