Skip integration tests on short or lack of docker

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby 2022-10-14 10:37:13 +02:00
parent a9c3b14f79
commit eda4321486
No known key found for this signature in database
2 changed files with 31 additions and 1 deletions

View file

@ -1,6 +1,18 @@
package dockertestutil
import "github.com/ory/dockertest/v3/docker"
import (
"os"
"github.com/ory/dockertest/v3/docker"
)
func IsRunningInContainer() bool {
if _, err := os.Stat("/.dockerenv"); err != nil {
return false
}
return true
}
func DockerRestartPolicy(config *docker.HostConfig) {
// set AutoRemove to true so that stopped container goes away by itself on error *immediately*.