File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
ci/cloudbuild/dockerfiles Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -56,11 +56,11 @@ RUN curl -o /usr/bin/bazelisk -sSL "https://github.com/bazelbuild/bazelisk/relea
5656
5757# Download the packages needed to run Bigtable conformance tests.
5858WORKDIR /var/tmp/downloads
59- RUN wget -O go.tgz https://go.dev/dl/go1.20.5 .linux-amd64.tar.gz
59+ RUN wget -O go.tgz https://go.dev/dl/go1.25.4 .linux-amd64.tar.gz
6060RUN tar -C /usr/local/ -xzf go.tgz
6161ENV GO_LOCATION=/usr/local/go
6262ENV PATH=${GO_LOCATION}/bin:${PATH}
6363RUN go version
6464WORKDIR /var/tmp/downloads/cloud-bigtable-clients-test
65- RUN curl -fsSL https://github.com/googleapis/cloud-bigtable-clients-test/archive/v0.0.2 .tar.gz | \
65+ RUN curl -fsSL https://github.com/googleapis/cloud-bigtable-clients-test/archive/v0.0.4 .tar.gz | \
6666 tar -xzf - --strip-components=1
Original file line number Diff line number Diff line change @@ -41,7 +41,10 @@ popd >/dev/null
4141
4242# Run the test
4343pushd /var/tmp/downloads/cloud-bigtable-clients-test/tests > /dev/null
44- go test -v -skip Generic_CloseClient -proxy_addr=:9999
44+ # Run all non ExecuteQuery tests with skips for non ExecuteQuery tests.
45+ go test -v \
46+ -skip " Generic_CloseClient|Generic_DeadlineExceeded|NoRetry_OutOfOrderError_Reverse|Retry_LastScannedRow_Reverse|Retry_WithRetryInfo_OverallDedaline|TestExecuteQuery" \
47+ -proxy_addr=:9999
4548exit_status=$?
4649# Remove the entire module cache, including unpacked source code of versioned
4750# dependencies.
You can’t perform that action at this time.
0 commit comments