diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cab28472..be21b16f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 21806ed4..4aa5ee44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/requirements.txt b/requirements.txt index 3ce6e8d3..8dca6d1d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,5 @@ Pillow~=7.2.0 tabulate~=0.8.7 mypy==0.782 -mypy-extensions==0.4.3 \ No newline at end of file +mypy-extensions==0.4.3 +pytest==6.1.2 \ No newline at end of file