From ae638b58bb5c8bebcc1b2e86b41071e394f5f7f3 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Wed, 12 Mar 2025 19:24:34 +0200 Subject: [PATCH] fixup! ci: Add CI job for our large tests --- .github/workflows/large-tests.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/large-tests.yml b/.github/workflows/large-tests.yml index 586f81a..be64209 100644 --- a/.github/workflows/large-tests.yml +++ b/.github/workflows/large-tests.yml @@ -53,6 +53,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Get current date id: date @@ -76,12 +78,20 @@ jobs: python3 python3-poetry make poetry install + - name: Smoke test before the party begins + run: |- + poetry run ./dev_scripts/dangerzone-cli tests/test_docs/sample-pdf.pdf + - name: Run large tests run: |- export TEST_GROUP_COUNT=20 export TEST_GROUP=${{ matrix.group }} poetry run make test-large + - name: Show results + run: |- + cat tests/test_docs_large/results/junit/* + - name: Upload results uses: actions/upload-artifact@v4 with: