You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 31, 2023. It is now read-only.
# If this is a continuous build, send the test log to the FlakyBot.
40
+
# See https://github.com/googleapis/repo-automation-bots/tree/master/packages/flakybot.
41
+
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR=*"continuous"* ]];then
42
+
cleanup() {
43
+
chmod +x $KOKORO_GFILE_DIR/linux_amd64/flakybot
44
+
$KOKORO_GFILE_DIR/linux_amd64/flakybot
45
+
}
46
+
trap cleanup EXIT HUP
47
+
fi
48
+
39
49
# If NOX_SESSION is set, it only runs the specified session,
40
50
# otherwise run all the sessions.
41
51
if [[ -n"${NOX_SESSION:-}" ]];then
42
52
python3.6 -m nox -s "${NOX_SESSION:-}"
43
53
else
44
54
python3.6 -m nox
45
-
fi
46
-
47
-
# If this is a continuous build, send the test log to the FlakyBot.
48
-
# See https://github.com/googleapis/repo-automation-bots/tree/master/packages/flakybot.
49
-
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR=*"continuous"* ]];then
0 commit comments