diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-04-11 16:45:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-11 16:45:54 +0800 |
commit | 464e79e66f18679b8afb821f622ed1358100832d (patch) | |
tree | 4ae9c67625369c238e751186629b391cfdf8b4cc /integration_test/consensus_test.go | |
parent | 5b0aad05d7ccc1dabedfd1f3bfc0d584db849e63 (diff) | |
download | dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.gz dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.bz2 dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.lz dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.xz dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.tar.zst dexon-consensus-464e79e66f18679b8afb821f622ed1358100832d.zip |
core: fix false alarm (#564)
* ignore test simple
* core: update voteFilter to filter old er round
* circleci: save logs
* core: move check notarySet to agrmgr
* fixup
Diffstat (limited to 'integration_test/consensus_test.go')
-rw-r--r-- | integration_test/consensus_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/integration_test/consensus_test.go b/integration_test/consensus_test.go index 05d7c44..bf2970a 100644 --- a/integration_test/consensus_test.go +++ b/integration_test/consensus_test.go @@ -252,6 +252,11 @@ func (s *ConsensusTestSuite) syncBlocksWithSomeNode( } func (s *ConsensusTestSuite) TestSimple() { + if testing.Short() { + // All other tests will cover this basic case. To speed up CI process, + // ignore this test in short mode. + return + } // The simplest test case: // - Node set is equals to DKG set and notary set for each chain in each // round. |