diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f2d3d239..01d4c06b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: diff --git a/ipfscluster_test.go b/ipfscluster_test.go index f4f02411..e00443ab 100644 --- a/ipfscluster_test.go +++ b/ipfscluster_test.go @@ -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"