Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(all): fix multiple files in significant changes in continuous tests #11338

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

BrennaEpp
Copy link
Contributor

@BrennaEpp BrennaEpp commented Dec 21, 2024

if [ -z $SIGNIFICANT_CHANGES ]; then

gets translated to for example:

+ '[' -z storage/grpc_client.go storage/integration_test.go ']'

Which causes the error:

github/google-cloud-go/internal/kokoro/continuous.sh: line 162: [: storage/grpc_client.go: binary operator expected

This error does not seem to be causing issues as fas as I can tell but we should probably fix it.

`if [ -z $SIGNIFICANT_CHANGES ]; then`

gets translated to for example:

```
+ '[' -z storage/grpc_client.go storage/integration_test.go ']'
```
Which causes the error:
```
github/google-cloud-go/internal/kokoro/continuous.sh: line 162: [: storage/grpc_client.go: binary operator expected
```
@BrennaEpp BrennaEpp requested a review from a team as a code owner December 21, 2024 02:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant