1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 17:42:20 +03:00

tests: Run pytest as part of GitHub PR checks

This commit is contained in:
Athanasius 2022-09-05 13:07:28 +01:00
parent 130bd619cf
commit ca6a0355d2
No known key found for this signature in database
GPG Key ID: 8C392035DD80FD62

View File

@ -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
####################################################################