File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 4040 make test
4141
4242 - name : Test
43- run : make test
43+ run : make test-integration
4444
4545 - name : Down the stack
4646 if : always()
Original file line number Diff line number Diff line change 1111 @echo " $( OK_COLOR) ==> Running tests$( NO_COLOR) "
1212 @go test -v -cover -covermode=atomic -coverprofile=tests.out ./...
1313
14+ test-integration :
15+ @echo " $( OK_COLOR) ==> Running tests$( NO_COLOR) "
16+ @go test --tags=integration -v -cover -covermode=atomic -coverprofile=tests.out ./...
17+
18+
1419setup :
1520 @echo " $( OK_COLOR) ==> Setting up deps$( NO_COLOR) "
1621 @awslocal kinesis create-stream --stream-name test --shard-count 1
Original file line number Diff line number Diff line change 1+ //go:build integration
2+
13package amqp_test
24
35import (
You can’t perform that action at this time.
0 commit comments