Merge pull request #1520 from poanetwork/fix-flaky-tests

Fix flaky tests
pull/1527/head
Victor Baranov 6 years ago committed by GitHub
commit 33d57c8265
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      .circleci/config.yml

@ -552,9 +552,6 @@ workflows:
# This unfortunately will only fire if all the tests pass because of how `requires` works
- coveralls_merge:
requires:
- test_parity_http_websocket
- test_parity_mox
- test_geth_http_websocket
- test_geth_mox
- credo:
requires:
@ -572,8 +569,7 @@ workflows:
- eslint
- jest
- sobelow
- test_parity_http_websocket
- test_parity_mox
# This makes these synchronous, instead of asynchronous
- test_geth_http_websocket
- test_geth_mox
- dialyzer:
@ -599,10 +595,13 @@ workflows:
- build
- test_parity_mox:
requires:
- build
# This makes these synchronous, instead of asynchronous
- test_parity_http_websocket
- test_geth_http_websocket:
requires:
- build
# This makes these synchronous, instead of asynchronous
- test_parity_mox
- test_geth_mox:
requires:
- build
# This makes these synchronous, instead of asynchronous
- test_geth_http_websocket

Loading…
Cancel
Save