Skip test requiring cratedb server in short test mode
This commit is contained in:
parent
c4720e5d8b
commit
3405deebe3
|
@ -91,6 +91,10 @@ VALUES
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_escapeValue(t *testing.T) {
|
func Test_escapeValue(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("Skipping integration test in short mode")
|
||||||
|
}
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
Val interface{}
|
Val interface{}
|
||||||
Want string
|
Want string
|
||||||
|
|
Loading…
Reference in New Issue