We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b44787 commit 2d55ac9Copy full SHA for 2d55ac9
backend/sqlite/sqlite_test.go
@@ -11,13 +11,21 @@ import (
11
)
12
13
func Test_SqliteBackend(t *testing.T) {
14
+ if testing.Short() {
15
+ t.Skip()
16
+ }
17
+
18
test.BackendTest(t, func() test.TestBackend {
19
// Disable sticky workflow behavior for the test execution
20
return NewInMemoryBackend(backend.WithStickyTimeout(0))
21
}, nil)
22
}
23
24
func Test_EndToEndSqliteBackend(t *testing.T) {
25
26
27
28
29
test.EndToEndBackendTest(t, func() test.TestBackend {
30
31
0 commit comments