Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ jobs:
steps:
- checkout
- run: make test
- run: bash <(curl -s https://raw.githubusercontent.com/codecov/codecov-action/master/codecov) -t ${CODECOV_TOKEN}
- run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}

build-latest: # test with redisearch:latest
docker:
Expand Down
2 changes: 1 addition & 1 deletion cmd/ftsb_redisearch/cmd_processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/csv"
"fmt"
"github.com/RediSearch/ftsb/benchmark_runner"
"github.com/mediocregopher/radix/v3"
radix "github.com/mediocregopher/radix/v3"
"golang.org/x/time/rate"
"log"
"strconv"
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ go 1.13
require (
code.cloudfoundry.org/bytefmt v0.0.0-20200131002437-cf55d5288a48
github.com/HdrHistogram/hdrhistogram-go v1.0.1
github.com/mediocregopher/radix/v3 v3.5.2
github.com/mediocregopher/radix/v3 v3.8.1
github.com/mitchellh/gox v1.0.1 // indirect
github.com/onsi/ginkgo v1.13.0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/tcnksm/ghr v0.14.0 // indirect
github.com/tcnksm/ghr v0.16.0 // indirect
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
)
Loading