Run tests in GitHub actions.

This commit is contained in:
Dan Albert 2020-10-30 15:09:20 -07:00
parent 258c34e61d
commit f5047fc0cc
3 changed files with 12 additions and 1 deletions

View File

@ -42,6 +42,11 @@ jobs:
./venv/scripts/activate
mypy theater
- name: Test
run: |
./venv/scripts/activate
pytest tests
- name: Build binaries
run: |
./venv/scripts/activate

View File

@ -44,6 +44,11 @@ jobs:
./venv/scripts/activate
mypy theater
- name: Test
run: |
./venv/scripts/activate
pytest tests
- name: Build binaries
run: |
./venv/scripts/activate

View File

@ -6,4 +6,5 @@ Pillow~=7.2.0
tabulate~=0.8.7
mypy==0.782
mypy-extensions==0.4.3
mypy-extensions==0.4.3
pytest==6.1.2