1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-19 09:15:30 +03:00
aports/testing/git-sizer/skip-test-exec.patch
Michał Polański f545d49bfb testing/git-sizer: new aport
Compute various size metrics for a Git repository
https://github.com/github/git-sizer
2021-06-29 02:54:30 +02:00

12 lines
427 B
Diff

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))