8000 More tweaks to the system test script · johnmanong/python-docs-samples@4502493 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4502493

Browse files
author
Jon Wayne Parrott
committed
More tweaks to the system test script
Change-Id: I9d13ee55682c8dbd7d27de91f540a10a0e9d1792
1 parent f177d9e commit 4502493

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.kokoro/system_tests.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ export GOOGLE_CLIENT_SECRETS=$(pwd)/testing/client-secrets.json
2828

2929
# Run tests
3030
pip install --upgrade nox-automation
31-
nox -k "${NOX_SESSION}" || true
31+
nox -k "${NOX_SESSION}" || ret_code=$?
3232

3333
# Workaround for Kokoro permissions issue: delete secrets
3434
rm testing/{test-env.sh,client-secrets.json,service-account.json}
35+
36+
exit ${ret_code}

0 commit comments

Comments
 (0)
0