From ffcb167bce05c4eebc8d1b91f59251c1c210333f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20=C5=A0im=C3=A1nek?= Date: Wed, 24 Nov 2021 20:19:24 +0100 Subject: [PATCH] Update go test commands in .github/CONTRIBUTING.md. --- .github/CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 6a22f15cf..6114a6913 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -172,8 +172,8 @@ go test ./... As you make your changes, you can re-run the above command to ensure that the tests are *still* passing. If you are working only on a specific Go package, you can speed up your testing cycle by testing only that single package, or packages under a particular package prefix: ``` -go test ./command/... -go test ./addrs +go test ./internal/command/... +go test ./internal/addrs ``` ## Acceptance Tests: Testing interactions with external services