We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0a7f88 commit 45df5c8Copy full SHA for 45df5c8
2 files changed
Makefile
@@ -18,6 +18,9 @@ test:
18
test-coverage: test
19
go tool cover -html=coverage.out
20
21
+test-e2e:
22
+ go test ./... -tags=e2e_test
23
+
24
generate-proto: ## regenerate protos
25
@echo " > cloning protobuf from odpf/proton"
26
@echo " > generating protobuf"
test/e2e/e2e_test.go
@@ -1,4 +1,4 @@
1
-//+build integration
+//+build e2e_test
2
3
package e2e_test
4
@@ -40,7 +40,7 @@ var (
40
const (
41
testDB = "test_db"
42
user = "test_user"
43
- pass = "pass"
+ pass = "admin"
44
mysqlHost = "localhost:3306"
45
brokerHost = "localhost:9093"
46
testTopic = "topic-a"
0 commit comments