From b63a3b9790de0b49cea5f166dd9f8c5227794d2b Mon Sep 17 00:00:00 2001 From: Thomas Wood Date: Sat, 25 May 2024 11:10:12 +0100 Subject: [PATCH] Pytest Github actions --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e65baed..85c9193 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,9 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt + - name: Delete unwanted tests + run: rm tests/*selenium* - name: Test with pytest run: | pip install pytest - pytest tests.py \ No newline at end of file + pytest tests \ No newline at end of file