From 5145c37be71a96bd795e917005ec758a8e353190 Mon Sep 17 00:00:00 2001 From: 123freezebrennan Date: Sun, 11 Aug 2024 14:10:48 -0700 Subject: [PATCH] adding pytest runner as well --- .github/workflows/runtests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/runtests.yml b/.github/workflows/runtests.yml index 77bb2b10..bddc217f 100644 --- a/.github/workflows/runtests.yml +++ b/.github/workflows/runtests.yml @@ -1,4 +1,4 @@ -name: Pytest +name: Run Tests with Pytest on: [push, pull_request] @@ -18,6 +18,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi pip install pytest - name: Run pytest