Skip to content
This repository has been archived by the owner on Feb 24, 2020. It is now read-only.

Commit

Permalink
increase reruns for flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
anneFly committed Nov 8, 2018
1 parent db56568 commit b22233b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_end_to_end.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test_get_lead(self, client, lead):
response = client.get_lead(lead['id'])
assert all(False for k in lead if k not in response), dict(response)

@pytest.mark.flaky(reruns=3)
@pytest.mark.flaky(reruns=5)
def test_get_leads(self, client, lead):
query = 'name:{name}'.format(**lead)
response = client.get_leads(query=query)
Expand Down

0 comments on commit b22233b

Please sign in to comment.