test: spec out check tests [ci skip]

This commit is contained in:
2021-12-31 17:18:50 +01:00
parent eb3509ab3f
commit 1b7836009f
6 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package integration
import (
"os"
"testing"
)
func skipIfNotIntegration(t *testing.T) {
if os.Getenv("ABRA_INTEGRATION") == "" {
t.Skip("missing 'ABRA_INTEGRATION', not running integration tests")
}
}