Skip to content

Commit 82a77be

Browse files
committed
reverts removal of parallel run from critest
Signed-off-by: Paul S. Schweigert <[email protected]> (cherry picked from commit 7300296) As discussed in #6903, running ginkgo tests in parallel while trying to skip wasn't working. However, now that kubernetes-sigs/cri-tools#930 has fixed the issue upstream, we can revert back to running our tests in parallel with the skip. Signed-off-by: Paul S. Schweigert <[email protected]>
1 parent 74c1e96 commit 82a77be

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

Vagrantfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,7 @@ EOF
265265
fi
266266
trap cleanup EXIT
267267
ctr version
268-
269-
# TODO run in parallel, see https://github.com/containerd/containerd/issues/6903
270-
critest --ginkgo.skip='HostIpc is true' --report-dir="${REPORT_DIR}"
268+
critest --parallel=$[$(nproc)+2] --ginkgo.skip='HostIpc is true' --report-dir="${REPORT_DIR}"
271269
SHELL
272270
end
273271

script/setup/critools-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.24.0
1+
v1.24.1

script/setup/install-critools

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ set -eu -o pipefail
2323
script_dir="$(cd -- "$(dirname -- "$0")" > /dev/null 2>&1; pwd -P)"
2424

2525
cd "$(go env GOPATH)"
26-
go install github.com/onsi/ginkgo/ginkgo@v1.16.5
26+
go install github.com/onsi/ginkgo/v2/ginkgo@v2.1.4
2727

2828
: "${CRITEST_COMMIT:=$(cat "${script_dir}/critools-version")}"
2929
: "${DESTDIR:=""}"

0 commit comments

Comments
 (0)