Skip to content

Commit 3bd1819

Browse files
committed
Remove DynamoDB and Metrics tests from the benchmark test suite, by default. This should make running benchmarks much more timely.
1 parent c19cc9d commit 3bd1819

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/BenchmarkRunner.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,9 @@ public static void main(String... args) throws RunnerException, JsonProcessingEx
9696
benchmarksToRun.addAll(ASYNC_BENCHMARKS);
9797
benchmarksToRun.addAll(PROTOCOL_BENCHMARKS);
9898
benchmarksToRun.addAll(COLD_START_BENCHMARKS);
99-
benchmarksToRun.addAll(MAPPER_BENCHMARKS);
100-
benchmarksToRun.addAll(METRIC_BENCHMARKS);
99+
100+
log.info(() -> "Skipping tests, to reduce benchmark times: \n" + MAPPER_BENCHMARKS + "\n" + METRIC_BENCHMARKS);
101+
101102

102103
BenchmarkRunner runner = new BenchmarkRunner(benchmarksToRun);
103104

0 commit comments

Comments
 (0)