forked from toolshed/abra
cli
cmd
pkg
app
autocomplete
catalogue
client
config
container
context
dns
envfile
formatter
git
integration
integration.go
limit
lint
log
recipe
secret
server
service
ssh
test
upstream
web
scripts
tests
vendor
.dockerignore
.drone.yml
.envrc.sample
.gitignore
.goreleaser.yml
AUTHORS.md
Dockerfile
LICENSE
Makefile
README.md
go.mod
go.sum
renovate.json
13 lines
209 B
Go
13 lines
209 B
Go
package integration
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func skipIfNotIntegration(t *testing.T) {
|
|
if os.Getenv("ABRA_INTEGRATION") == "" {
|
|
t.Skip("missing 'ABRA_INTEGRATION', not running integration tests")
|
|
}
|
|
}
|