Skip to content

Commit 2d55ac9

Browse files
committed
Skip sqlite tests
1 parent 4b44787 commit 2d55ac9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

backend/sqlite/sqlite_test.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,21 @@ import (
1111
)
1212

1313
func Test_SqliteBackend(t *testing.T) {
14+
if testing.Short() {
15+
t.Skip()
16+
}
17+
1418
test.BackendTest(t, func() test.TestBackend {
1519
// Disable sticky workflow behavior for the test execution
1620
return NewInMemoryBackend(backend.WithStickyTimeout(0))
1721
}, nil)
1822
}
1923

2024
func Test_EndToEndSqliteBackend(t *testing.T) {
25+
if testing.Short() {
26+
t.Skip()
27+
}
28+
2129
test.EndToEndBackendTest(t, func() test.TestBackend {
2230
// Disable sticky workflow behavior for the test execution
2331
return NewInMemoryBackend(backend.WithStickyTimeout(0))

0 commit comments

Comments
 (0)