We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e149c49 commit 347d023Copy full SHA for 347d023
Makefile
@@ -4,4 +4,4 @@ build:
4
go build -ldflags "-s -w -X 'github.com/friendsofgo/killgrave/internal/app/cmd._version=`git rev-parse --abbrev-ref HEAD`-`git rev-parse --short HEAD`'" -o bin/killgrave cmd/killgrave/main.go
5
6
acceptance: build
7
- @(cd acceptance && go test -count=1 -v ./...)
+ @(cd acceptance && go test -count=1 -tags=acceptance -v ./...)
acceptance/acceptance_test.go
@@ -1,3 +1,5 @@
1
+//go:build acceptance
2
+
3
package acceptance
import (
0 commit comments