mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-16 12:45:18 +03:00
13 lines
516 B
Diff
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...)
|