Skip to content

Commit 086f1b0

Browse files
committed
test: run integration test
1 parent 9f0fa65 commit 086f1b0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/multi_az_integration_tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
branches:
77
- main
8+
- test/basic-conn-test
89
paths-ignore:
910
- "**/*.md"
1011
- "**/*.jpg"
@@ -21,7 +22,7 @@ jobs:
2122
strategy:
2223
fail-fast: false
2324
matrix:
24-
dbEngine: ["multi-az-mysql", "multi-az-postgres"]
25+
dbEngine: ["multi-az-mysql"]
2526

2627
steps:
2728
- name: Clone repository

tests/integration/container/tests/utils/test_environment.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ import { Resource } from "@opentelemetry/resources";
3636
import { ATTR_SERVICE_NAME } from "@opentelemetry/semantic-conventions";
3737
import { PeriodicExportingMetricReader } from "@opentelemetry/sdk-metrics";
3838
import { OTLPMetricExporter } from "@opentelemetry/exporter-metrics-otlp-grpc";
39+
import { logger } from "../../../../../common/logutils";
3940

4041
export class TestEnvironment {
4142
private static env?: TestEnvironment;
@@ -85,6 +86,7 @@ export class TestEnvironment {
8586
if (!success) {
8687
fail(`Cluster ${info.auroraClusterName} is not healthy`);
8788
}
89+
logger.info(`[Test SetUp] Cluster is available`);
8890
}
8991
}
9092

0 commit comments

Comments
 (0)