From 5aa717452e077d4287aad76553b7e1161a9f09e0 Mon Sep 17 00:00:00 2001 From: Patrick Robertson Date: Fri, 17 Jan 2025 17:02:54 +0100 Subject: [PATCH] Quick test that the app actually runs in core tests --- .github/workflows/tests-core.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests-core.yaml b/.github/workflows/tests-core.yaml index 06c67cb..08219f9 100644 --- a/.github/workflows/tests-core.yaml +++ b/.github/workflows/tests-core.yaml @@ -35,4 +35,6 @@ jobs: run: poetry install --no-interaction --with dev - name: Run Core Tests - run: poetry run pytest -ra -v -m "not download" + run: | + poetry run auto-archiver --version || true + poetry run pytest -ra -v -m "not download"