1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-16 12:45:18 +03:00
aports/testing/kopia/skip-docker-tests.patch
Michał Polański 0737b13e59 testing/kopia: new aport
Fast and secure backup tool
https://kopia.io/
2021-11-14 23:58:26 +01:00

13 lines
516 B
Diff

diff --git a/internal/testutil/dockertestutil.go b/internal/testutil/dockertestutil.go
index 9f5fa2f6..b5570f85 100644
--- a/internal/testutil/dockertestutil.go
+++ b/internal/testutil/dockertestutil.go
@@ -12,6 +12,8 @@
// RunDockerAndGetOutputOrSkip runs Docker and returns the output as a string.
func RunDockerAndGetOutputOrSkip(tb testing.TB, args ...string) string {
tb.Helper()
+ tb.Skip("skipping test that runs docker...")
+
tb.Logf("running docker %v", args)
c := exec.Command("docker", args...)