Skip to content

Commit

Permalink
ci: add missing '-run' parameter for individual tests.
Browse files Browse the repository at this point in the history
Signed-off-by: Phillip Whelan <phil@calyptia.com>
  • Loading branch information
pwhelan committed Oct 5, 2023
1 parent ff4ff8b commit 47629f2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ jobs:
run: |
# go test -v -covermode=atomic -coverprofile=coverage.out ./...
go test -v -covermode=atomic -coverprofile=coverage.out \
\^TestInputCallbackCtrlC\$ ./
-run \^TestInputCallbackCtrlC\$ ./
go test -v -covermode=atomic -coverprofile=coverage.out \
\^TestInputCallbackDangle\$ ./
-run \^TestInputCallbackDangle\$ ./
go test -v -covermode=atomic -coverprofile=coverage.out \
\^TestInputCallbackInfinite\$ ./
-run \^TestInputCallbackInfinite\$ ./
go test -v -covermode=atomic -coverprofile=coverage.out \
\^TestInputCallbackInfiniteLatency\$ ./
-run \^TestInputCallbackInfiniteLatency\$ ./
go test -v -covermode=atomic -coverprofile=coverage.out \
\^TestInputCallbackInfiniteConcurrent\$ ./
-run \^TestInputCallbackInfiniteConcurrent\$ ./
go test -v -covermode=atomic -coverprofile=coverage.out \
\^TestPlugin\$ ./
-run \^TestPlugin\$ ./
go test -v -covermode=atomic -coverprofile=coverage.out \
\^TestInputCallbackInfiniteConcurrent\$ ./
-run \^TestInputCallbackInfiniteConcurrent\$ ./
go test -v -covermode=atomic -coverprofile=coverage.out \
./configloader/
go test -v -covermode=atomic -coverprofile=coverage.out \
Expand Down

0 comments on commit 47629f2

Please sign in to comment.