Skip to content

tests: run the test_stages category in parallel #55

tests: run the test_stages category in parallel

tests: run the test_stages category in parallel #55

Triggered via push November 7, 2023 16:19
Status Failure
Total duration 2h 2m 53s
Artifacts

test.yml

on: push
Matrix: Unittest
Fit to window
Zoom out
Zoom in

Annotations

1 error
Unittest (test.mod, py36)
Command failed: /usr/bin/docker run --net=host --privileged --rm --volume=/:/osb/host --volume=/home/runner/work/osbuild/osbuild:/osb/workdir --volume=/lib/modules/:/lib/modules/ --volume=/var/run/docker.sock:/var/run/docker.sock ghcr.io/osbuild/osbuild-ci:latest-202308241910 /bin/bash -o errexit -c # Note that only "test.run.test_stages" runs in parallel because # the other tests are not sufficiently isolated and will cause # random failures. But test_stages is the long running one with # almost 2h. if [ "test.mod" = "test.run.test_stages" ]; then # Using 4 workers is a bit arbitrary, "auto" is probably too # aggressive. export TEST_WORKERS="-n 4" # Share the store between the workers speeds things up further export OSBUILD_TEST_STORE=/var/tmp/osbuild-test-store fi TEST_CATEGORY="test.mod" \ tox -e "py36"