From 5280ebbf44b34cbe678ec97579616335d468c6ea Mon Sep 17 00:00:00 2001 From: TimeTravelPenguin Date: Thu, 4 Jan 2024 22:28:33 +1100 Subject: [PATCH] Corrected tests --- .github/workflows/CI.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 97a7c59..4dce905 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -59,22 +59,11 @@ jobs: - name: Install project run: poetry install --no-interaction - - name: Setup cache variables - shell: bash - id: cache-vars - run: | - echo "date=$(/bin/date -u "+%m%w%Y")" >> $GITHUB_OUTPUT - - #- name: Install and cache ffmpeg (all OS) - # uses: FedericoCarboni/setup-ffmpeg@v2 - # with: - # token: ${{ secrets.GITHUB_TOKEN }} - # id: setup-ffmpeg - - name: Typecheck with mypy run: | poetry run mypy - name: Run tests run: | - poetry run python -m pytest + source $VENV + pytest --version