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