summaryrefslogtreecommitdiffstats
path: root/pkg/container/docker_run_test.go
diff options
context:
space:
mode:
authorEarl Warren <contact@earl-warren.org>2024-12-27 11:52:41 +0100
committerEarl Warren <contact@earl-warren.org>2024-12-27 11:59:35 +0100
commitdfed194aa4ce57f8b0b8b49548cd8643f549f018 (patch)
tree4ac6f55f049f481a672808f9a9f60f0477ee5cfc /pkg/container/docker_run_test.go
parentMerge pull request 'Update module github.com/docker/cli to v25.0.7+incompatib... (diff)
downloadforgejo-act-dfed194aa4ce57f8b0b8b49548cd8643f549f018.tar.xz
forgejo-act-dfed194aa4ce57f8b0b8b49548cd8643f549f018.zip
chore(tests): add ./pkg/container tests
remove a failed test verifying exposed port which are not used in the Forgejo runner anyway
Diffstat (limited to 'pkg/container/docker_run_test.go')
-rw-r--r--pkg/container/docker_run_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/container/docker_run_test.go b/pkg/container/docker_run_test.go
index 9e85fb7..6a2c05b 100644
--- a/pkg/container/docker_run_test.go
+++ b/pkg/container/docker_run_test.go
@@ -20,6 +20,9 @@ import (
)
func TestDocker(t *testing.T) {
+ if testing.Short() {
+ t.Skip("skipping integration test")
+ }
ctx := context.Background()
client, err := GetDockerClient(ctx)
assert.NoError(t, err)