From 8b498073614d61e5ceed3909d98b6e400b4f300c Mon Sep 17 00:00:00 2001 From: Austin Godber Date: Tue, 23 Jul 2024 07:44:28 -0700 Subject: [PATCH] split tests out --- .gitea/workflows/test.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index bca1f2b..59c1917 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -17,9 +17,12 @@ jobs: with: python-version: ${{ matrix.python-version }} architecture: x64 - - run: | + - name: Setup Tests and Dependencies + run: | python --version pip install -U pip pip install pytest coverage pytest-cov pip install -r requirements.txt + - name: Run tests + run: | pytest \ No newline at end of file