Compare commits

...

2 Commits

Author SHA1 Message Date
Kurtis Van Gent
d268937825 chore: re-enable dataplex tests 2025-08-26 12:52:59 -06:00
Kurtis Van Gent
4c94959f50 chore: update test timeout to 10 minutes 2025-08-26 12:51:37 -06:00
2 changed files with 20 additions and 20 deletions

View File

@@ -152,25 +152,25 @@ steps:
bigquery \
bigquery
# - id: "dataplex"
# name: golang:1
# waitFor: ["compile-test-binary"]
# entrypoint: /bin/bash
# env:
# - "GOPATH=/gopath"
# - "DATAPLEX_PROJECT=$PROJECT_ID"
# - "SERVICE_ACCOUNT_EMAIL=$SERVICE_ACCOUNT_EMAIL"
# secretEnv: ["CLIENT_ID"]
# volumes:
# - name: "go"
# path: "/gopath"
# args:
# - -c
# - |
# .ci/test_with_coverage.sh \
# "Dataplex" \
# dataplex \
# dataplex
- id: "dataplex"
name: golang:1
waitFor: ["compile-test-binary"]
entrypoint: /bin/bash
env:
- "GOPATH=/gopath"
- "DATAPLEX_PROJECT=$PROJECT_ID"
- "SERVICE_ACCOUNT_EMAIL=$SERVICE_ACCOUNT_EMAIL"
secretEnv: ["CLIENT_ID"]
volumes:
- name: "go"
path: "/gopath"
args:
- -c
- |
.ci/test_with_coverage.sh \
"Dataplex" \
dataplex \
dataplex
- id: "postgres"
name: golang:1

View File

@@ -109,7 +109,7 @@ func TestDataplexToolEndpoints(t *testing.T) {
teardownTable1 := setupBigQueryTable(t, ctx, bigqueryClient, datasetName, tableName)
teardownAspectType1 := setupDataplexThirdPartyAspectType(t, ctx, dataplexClient, aspectTypeId)
time.Sleep(2 * time.Minute) // wait for table and aspect type to be ingested
time.Sleep(10 * time.Minute) // wait for table and aspect type to be ingested
defer teardownTable1(t)
defer teardownAspectType1(t)