Run tests by default with crdt and not with raft

This commit is contained in:
Hector Sanjuan 2019-11-07 20:19:34 +01:00
parent 92bdc2e2e3
commit 9649664dbd
2 changed files with 3 additions and 3 deletions

View File

@ -27,9 +27,9 @@ jobs:
- travis_wait go test -v -timeout 15m -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
- name: "Main Tests with crdt consensus"
- name: "Main Tests with raft consensus"
script:
- go test -v -failfast -consensus crdt .
- go test -v -failfast -consensus raft .
- name: "Main Tests with stateless tracker"
script:
- go test -v -failfast -tracker stateless .

View File

@ -56,7 +56,7 @@ var (
customLogLvlFacilities = logFacilities{}
ptracker = "map"
consensus = "raft"
consensus = "crdt"
testsFolder = "clusterTestsFolder"