disable suite test

This commit is contained in:
Pascal Fischer
2025-01-17 02:15:59 +01:00
parent 96e9c3683c
commit 3556d6a1fc
3 changed files with 544 additions and 541 deletions

View File

@@ -1,13 +1,13 @@
package server_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestManagement(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Management Service Suite")
}
// import (
// . "github.com/onsi/ginkgo"
// . "github.com/onsi/gomega"
//
// "testing"
// )
//
// func TestManagement(t *testing.T) {
// RegisterFailHandler(Fail)
// RunSpecs(t, "Management Service Suite")
// }

File diff suppressed because it is too large Load Diff

View File

@@ -21,6 +21,7 @@ var newSqlite = func(b *testing.B) Store {
}
func BenchmarkTest_StoreWrite(b *testing.B) {
b.Skipf("skipping benchmark")
cases := []benchCase{
{name: "SqliteStore_Write", storeFn: newSqlite, size: 100},
{name: "SqliteStore_Write", storeFn: newSqlite, size: 500},
@@ -50,6 +51,7 @@ func BenchmarkTest_StoreWrite(b *testing.B) {
}
func BenchmarkTest_StoreRead(b *testing.B) {
b.Skipf("skipping benchmark")
cases := []benchCase{
{name: "SqliteStore_Read", storeFn: newSqlite, size: 100},
{name: "SqliteStore_Read", storeFn: newSqlite, size: 500},