diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 55ee97ff..918f703d 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -91,3 +91,11 @@ jobs: # explicitly ignore docstring errors (start with D) git diff "refs/remotes/${BASE_REPO_OWNER}/${BASE_REF}" -- | flake8 . --count --statistics --diff --extend-ignore D #################################################################### + + #################################################################### + # Ensure all tests pass + #################################################################### + - name: PyTest tests + run: | + pytest + ####################################################################