mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
parallelize some tests
These tests seem likely to be safe to run together, so let's.
This commit is contained in:
parent
ebef51daa0
commit
33bd22a7cf
1 changed files with 2 additions and 0 deletions
|
|
@ -7340,7 +7340,9 @@ func TestMissingKeyRegression(t *testing.T) {
|
|||
func TestVariousQueries(t *testing.T) {
|
||||
for _, clusterSize := range []int{1, 3, 5} {
|
||||
clusterSize := clusterSize
|
||||
// the VariousQueries tests should be able to run in parallel with each other.
|
||||
t.Run(fmt.Sprintf("%d-node", clusterSize), func(t *testing.T) {
|
||||
t.Parallel()
|
||||
c := test.MustRunCluster(t, clusterSize)
|
||||
defer c.Close()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue