test: spec out check tests [ci skip]
This commit is contained in:
12
pkg/integration/integration.go
Normal file
12
pkg/integration/integration.go
Normal 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")
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user