We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f430ef2 commit 4ba3d82Copy full SHA for 4ba3d82
1 file changed
script/critest.sh
@@ -70,6 +70,11 @@ if [ ! -z "$CGROUP_DRIVER" ] && [ "$CGROUP_DRIVER" = "systemd" ];then
70
EOF
71
fi
72
73
+GINKGO_SKIP_TEST=()
74
+if [ ! -z "$SKIP_TEST" ]; then
75
+ GINKGO_SKIP_TEST+=("--ginkgo.skip" "$SKIP_TEST")
76
+fi
77
+
78
ls /etc/cni/net.d
79
80
/usr/local/bin/containerd \
@@ -85,4 +90,4 @@ do
85
90
crictl --runtime-endpoint ${BDIR}/c.sock info && break || sleep 1
86
91
done
87
92
88
-critest --report-dir "$report_dir" --runtime-endpoint=unix:///${BDIR}/c.sock --parallel=8 "${EXTRA_CRITEST_OPTIONS:-""}"
93
+critest --report-dir "$report_dir" --runtime-endpoint=unix:///${BDIR}/c.sock --parallel=8 "${GINKGO_SKIP_TEST[@]}" "${EXTRA_CRITEST_OPTIONS:-""}"
0 commit comments