Switch default datastore in tests

This commit is contained in:
Hector Sanjuan 2023-03-06 18:50:50 +01:00
parent b6e8a6efd2
commit 8995533f6d
2 changed files with 4 additions and 4 deletions

View File

@ -77,8 +77,8 @@ jobs:
- name: "Tests"
run: go test -v -timeout 15m -failfast -datastore badger3 .
tests-pebble:
name: "Using Pebble"
tests-badger:
name: "Using Badger"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -91,7 +91,7 @@ jobs:
go-version: ${{ env.GO }}
- name: "Tests"
run: go test -v -timeout 15m -failfast -datastore pebble .
run: go test -v -timeout 15m -failfast -datastore badger .
tests-check:

View File

@ -58,7 +58,7 @@ var (
customLogLvlFacilities = logFacilities{}
consensus = "crdt"
datastore = "badger"
datastore = "pebble"
ttlDelayTime = 2 * time.Second // set on Main to diskInf.MetricTTL
testsFolder = "clusterTestsFolder"