From 021fada65ce8a5a83888356787f18a5d04b40254 Mon Sep 17 00:00:00 2001 From: Ilya Sytchev Date: Thu, 2 Dec 2021 18:51:28 -0500 Subject: [PATCH] Add pytest step to GitHub Actions build workflow --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4714063b..a206b568 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,5 +20,7 @@ jobs: run: flake8 - name: Run static type checking run: mypy forest - - name: Run tests + - name: Run legacy tests run: python -m unittest tests/imports.py + - name: Run pytest suite + run: pytest