aboutsummaryrefslogtreecommitdiffstats
path: root/testing/git-sizer/skip-test-exec.patch
blob: 5fa86229d6d33141566a2a91dd992dad61e23aec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/git_sizer_test.go b/git_sizer_test.go
index 6c82a7a..ee62350 100644
--- a/git_sizer_test.go
+++ b/git_sizer_test.go
@@ -22,6 +22,7 @@ import (
 
 // Smoke test that the program runs.
 func TestExec(t *testing.T) {
+	t.Skip("requires a git repository for testing")
 	cmd := exec.Command("bin/git-sizer")
 	output, err := cmd.CombinedOutput()
 	assert.NoErrorf(t, err, "command failed; output: %#v", string(output))