-
Notifications
You must be signed in to change notification settings - Fork 61
test: Add a new Github action to track failing conformance tests #1519
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
Merged
kevkim-codes
merged 15 commits into
googleapis:main
from
danieljbruce:mandatory-conformance-tests
Nov 22, 2024
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
4df7f8b
Add the files needed for the mandatory conformance
danieljbruce 069a018
test: Add the files needed for the mandatory conformance
danieljbruce d8241f4
Merge branch 'mandatory-conformance-tests' of https://github.com/dani…
danieljbruce 4662fc2
Add a required status check for mandatory conform
danieljbruce 97316ac
Have the test skip the known failures
danieljbruce 161daa9
Add backslash
danieljbruce 483e865
Space out known failures
danieljbruce 04298c7
Skip all the new line characters
danieljbruce 9e056c8
Add some more known failures to the list
danieljbruce 29e8219
Add more known failures to the list
danieljbruce 92bc1ba
Fix coerce logs command
danieljbruce 1a8fd52
Remove coerce logs line
danieljbruce f07d941
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] cee6ffa
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] 138ebc4
Merge branch 'mandatory-conformance-tests' of https://github.com/dani…
gcf-owl-bot[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| # Copyright 2024 Google LLC | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # Github action job to test core java library features on | ||
| # downstream client libraries before they are released. | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| name: mandatory-conformance | ||
| jobs: | ||
| mandatory-conformance: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| node: [ 14, 16, 18, 20 ] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| repository: googleapis/cloud-bigtable-clients-test | ||
| ref: main | ||
| path: cloud-bigtable-clients-test | ||
| - uses: actions/setup-node@v3 | ||
| with: | ||
| node-version: ${{ matrix.node }} | ||
| - uses: actions/setup-go@v5 | ||
| with: | ||
| go-version: '>=1.20.2' | ||
| - run: chmod +x .kokoro/mandatory-conformance.sh | ||
| - run: npm install | ||
| - run: go version | ||
| - run: .kokoro/mandatory-conformance.sh | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,29 @@ | ||
| TestMutateRow_Generic_Headers\|TestMutateRow_Generic_DeadlineExceeded|TestMutateRows_Generic_CloseClient\|TestMutateRows_Retry_WithRoutingCookie\|TestReadModifyWriteRow_Generic_Headers\|TestReadModifyWriteRow_NoRetry_TransientError\|TestReadModifyWriteRow_Generic_DeadlineExceeded\|TestReadRow_Generic_DeadlineExceeded\|TestReadRow_Retry_WithRoutingCookie\|TestReadRow_Retry_WithRetryInfo\|TestReadRows_ReverseScans_FeatureFlag_Enabled\|TestReadRows_NoRetry_OutOfOrderError_Reverse\|TestReadRows_Retry_PausedScan\|TestReadRows_Retry_LastScannedRow\|TestReadRows_Retry_LastScannedRow_Reverse\|TestCheckAndMutateRow_NoRetry_TransientError\|TestCheckAndMutateRow_Generic_DeadlineExceeded | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changes:
|
||
| TestMutateRow_Generic_Headers\| | ||
| TestMutateRow_Generic_DeadlineExceeded\| | ||
| TestMutateRows_Generic_CloseClient\| | ||
| TestMutateRows_Retry_WithRoutingCookie\| | ||
| TestMutateRows_Generic_DeadlineExceeded\| | ||
| TestReadModifyWriteRow_Generic_Headers\| | ||
| TestReadModifyWriteRow_NoRetry_TransientError\| | ||
| TestReadModifyWriteRow_Generic_DeadlineExceeded\| | ||
| TestReadRow_Generic_DeadlineExceeded\| | ||
| TestReadRow_Retry_WithRoutingCookie\| | ||
| TestReadRow_Retry_WithRetryInfo\| | ||
| TestReadRows_ReverseScans_FeatureFlag_Enabled\| | ||
| TestReadRows_NoRetry_OutOfOrderError_Reverse\| | ||
| TestReadRows_Retry_PausedScan\| | ||
| TestReadRows_Retry_LastScannedRow\| | ||
| TestReadRows_Retry_LastScannedRow_Reverse\| | ||
| TestReadRows_Retry_StreamReset\| | ||
| TestReadRows_Generic_CloseClient\| | ||
| TestReadRows_Generic_DeadlineExceeded\| | ||
| TestReadRows_Retry_WithRoutingCookie\| | ||
| TestReadRows_Retry_WithRoutingCookie_MultipleErrorResponses\| | ||
| TestReadRows_Retry_WithRetryInfo\| | ||
| TestReadRows_Retry_WithRetryInfo_MultipleErrorResponse\| | ||
| TestCheckAndMutateRow_NoRetry_TransientError\| | ||
| TestCheckAndMutateRow_Generic_DeadlineExceeded\| | ||
| TestCheckAndMutateRow_Generic_Headers\| | ||
| TestSampleRowKeys_Generic_Headers\| | ||
| TestSampleRowKeys_Generic_DeadlineExceeded\| | ||
| TestSampleRowKeys_Retry_WithRoutingCookie | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.