Skip to content

Commit 72bfbcf

Browse files
authored
fix(.github/workflows): run all dart tests under coverage tool (#5116)
Previously internal/sidekick/dart tests ran with plain "go test -race" while only internal/librarian/dart ran under the coverage tool. Combines both packages into a single test step.
1 parent d9cc6bf commit 72bfbcf

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/dart.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,5 @@ jobs:
3636
run: dart --version
3737
- name: Verify git is available
3838
run: git --version
39-
- name: Run internal/sidekick/dart tests
40-
run: go test -race ./internal/sidekick/dart
41-
- name: Run internal/librarian/dart tests and check coverage
42-
run: go run ./tool/cmd/coverage ./internal/librarian/dart
39+
- name: Run tests and check coverage
40+
run: go run ./tool/cmd/coverage ./internal/sidekick/dart ./internal/librarian/dart

0 commit comments

Comments
 (0)