Skip to content

Commit febd4fe

Browse files
committed
add test timeout with the old 10 s timeout
1 parent 1d26515 commit febd4fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_remote.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def _assert_push_and_pull(self, remote, rw_repo, remote_repo):
401401
res = remote.push(all=True)
402402
self._do_test_push_result(res, remote)
403403

404-
remote.pull('master')
404+
remote.pull('master', timeout=10.0)
405405

406406
# cleanup - delete created tags and branches as we are in an innerloop on
407407
# the same repository
@@ -467,7 +467,7 @@ def test_base(self, rw_repo, remote_repo):
467467
# Only for remotes - local cases are the same or less complicated
468468
# as additional progress information will never be emitted
469469
if remote.name == "daemon_origin":
470-
self._do_test_fetch(remote, rw_repo, remote_repo)
470+
self._do_test_fetch(remote, rw_repo, remote_repo, timeout=10.0)
471471
ran_fetch_test = True
472472
# END fetch test
473473

0 commit comments

Comments
 (0)