diff --git a/contribute/developer-guide.md b/contribute/developer-guide.md index 35a91894bf3..202d9e192b2 100644 --- a/contribute/developer-guide.md +++ b/contribute/developer-guide.md @@ -149,13 +149,13 @@ go test -covermode=atomic -tags=integration ./pkg/... To run PostgreSQL and MySQL integration tests locally, you need to start the docker blocks for MySQL and/or PostgreSQL test data sources by running `make devenv sources=mysql_tests,postgres_tests`. When your test data sources are running, you can execute integration tests by running: ```bash -GRAFANA_TEST_DB=mysql go test -covermode=atomic -tags=integration ./pkg/... +make test-go-integration-mysql ``` and/or ```bash -GRAFANA_TEST_DB=postgres go test -covermode=atomic -tags=integration ./pkg/... +make test-go-integration-postgres ``` ### Run end-to-end tests