Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .kokoro/trampoline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
# or zero if all commands in the pipeline exit successfully.
set -eo pipefail

export KOKORO_ROOT="${KOKORO_ROOT:-/tmpfs}"


# Always run the cleanup script, regardless of the success of bouncing into
# the container.
function cleanup() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
import proto # type: ignore
from google.api_core import protobuf_helpers as protobuf

# Trigger comment for system tests

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Avoid adding dummy or trigger comments to production source files to trigger CI/CD pipelines or system tests. This can lead to stale comments and unnecessary noise in the codebase history. Instead, consider using an empty commit (git commit --allow-empty -m 'trigger tests') or modifying a test file if absolutely necessary.



class VisionHelpers(object):
"""A set of convenience methods to make the Vision GAPIC easier to use.
Expand Down
Loading