fixup! ci: Add CI job for our large tests

This commit is contained in:
Alex Pyrgiotis 2025-03-12 19:24:34 +02:00
parent 089ef879a9
commit ae638b58bb
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -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: