Skip to content

Commit

Permalink
Increase number of retries in CI test (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Capuccini authored Jun 9, 2022
1 parent b2d8aea commit beb337b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .ci/tests/examples/is_success.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import pymongo

N_ROUNDS = 3
RETRIES= 6
N_ROUNDS=3
RETRIES=18
SLEEP=10

def _eprint(*args, **kwargs):
Expand All @@ -29,4 +29,4 @@ def _wait_n_rounds(collection):
# Wait for successful rounds
succeded = _wait_n_rounds(client['fedn-test-network']['control']['round'])
assert(succeded == N_ROUNDS) # check that all rounds succeeded
_eprint(f'Succeded rounds: {succeded}. Test passed.')
_eprint(f'Succeded rounds: {succeded}. Test passed.')

0 comments on commit beb337b

Please sign in to comment.