diff options
author | earl-warren <earl-warren@noreply.code.forgejo.org> | 2024-12-27 12:45:42 +0100 |
---|---|---|
committer | earl-warren <earl-warren@noreply.code.forgejo.org> | 2024-12-27 12:45:42 +0100 |
commit | 66ad8581f10f3b6b11bc28e72c7fef4d4b40c38a (patch) | |
tree | 4ac6f55f049f481a672808f9a9f60f0477ee5cfc /pkg/container/docker_run_test.go | |
parent | Merge pull request 'Update module github.com/docker/cli to v25.0.7+incompatib... (diff) | |
parent | chore(tests): add ./pkg/container tests (diff) | |
download | forgejo-act-66ad8581f10f3b6b11bc28e72c7fef4d4b40c38a.tar.xz forgejo-act-66ad8581f10f3b6b11bc28e72c7fef4d4b40c38a.zip |
Merge pull request 'chore(tests): add ./pkg/container tests' (#86) from earl-warren/act:wip-container-tests into main
Reviewed-on: https://code.forgejo.org/forgejo/act/pulls/86
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Diffstat (limited to 'pkg/container/docker_run_test.go')
-rw-r--r-- | pkg/container/docker_run_test.go | 3 |
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) |