workflow: run assembler tests in parallel

The assembler tests currently run around 45min, try to run in
parallel to see how much we can win from that.
This commit is contained in:
Michael Vogt 2024-03-04 16:59:34 +01:00 committed by Simon de Vlieger
parent 4d2476a26d
commit ea36e25b09
2 changed files with 5 additions and 1 deletions

View file

@ -62,6 +62,9 @@ jobs:
with:
image: ghcr.io/osbuild/osbuild-ci:latest-202308241910
run: |
# Using 4 workers is a bit arbitrary, "auto" is probably too
# aggressive.
export TEST_WORKERS="-n 4"
export OSBUILD_TEST_STORE=/var/tmp/osbuild-test-store
TEST_CATEGORY="test.run.test_assemblers" \
tox -e "py36"