Skip to content
Open
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
11 changes: 10 additions & 1 deletion .kokoro/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,17 @@ integration)
RETURN_CODE=$?
;;
graalvm)
declare -a EXCLUSIONS=(
"ITRemoteUDFTest#testRoutineRemoteUDF" # b/467066596
"ITBigQueryTest#testCancelJob" # b/467066417
"ITBigQueryTest#testOpenTelemetryTracingQuery" # b/467063732
"ITBigQueryTest#testFastSQLQueryMultiPage" # b/467064659
"ITBigQueryTest#testStatelessQueries" # b/467067105
)
printf -v EXCLUDED_TESTS '!%s,' "${EXCLUSIONS[@]}"
EXCLUDED_TESTS=${EXCLUDED_TESTS%,}
# Run Unit and Integration Tests with Native Image
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test -Dtest="${EXCLUDED_TESTS}"
RETURN_CODE=$?
;;
samples)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@
import java.util.logging.Logger;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.Timeout;
Expand Down Expand Up @@ -4656,6 +4657,7 @@ public void testProjectIDFastSQLQueryWithJobId() throws InterruptedException {
}

@Test
@Ignore("b/467064827")
public void testLocationFastSQLQueryWithJobId() throws InterruptedException {
DatasetInfo infoUK =
DatasetInfo.newBuilder(UK_DATASET)
Expand Down Expand Up @@ -7213,6 +7215,7 @@ private TableResult executeSimpleQuery(BigQuery bigQuery) throws InterruptedExce
}

@Test
@Ignore("b/467068396")
public void testTableResultJobIdAndQueryId() throws InterruptedException {
// For stateless queries, jobId and queryId are populated based on the following criteria:
// 1. For stateless queries, then queryId is populated.
Expand Down Expand Up @@ -7310,6 +7313,7 @@ public void testStatelessQueriesWithLocation() throws Exception {
}

@Test
@Ignore("b/467067104")
public void testQueryWithTimeout() throws InterruptedException {
// Validate that queryWithTimeout returns either TableResult or Job object

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Args = --initialize-at-build-time=org.mockito.junit.MockitoJUnitRunner