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 072ac4f commit 2ff92e0Copy full SHA for 2ff92e0
1 file changed
internal/lint/lint_test.go
@@ -13,6 +13,13 @@ import (
13
)
14
15
func TestSymlinkFixture(t *testing.T) {
16
+ // This is an integration test: it shells out to an installed `vale`
17
+ // binary. Skip when one isn't on PATH (e.g., local `go test ./...` or a
18
+ // CI job that builds the binary without installing it) rather than failing.
19
+ if _, err := exec.LookPath("vale"); err != nil {
20
+ t.Skip("vale binary not found on PATH")
21
+ }
22
+
23
fixture := "../../testdata/fixtures/misc/symlinks"
24
25
targetSrc := system.AbsPath(filepath.Join(fixture, "Symlinked"))
0 commit comments