summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorsroet <sanderroet@hotmail.com>2021-09-10 13:50:57 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-09-18 09:26:28 +0800
commitbd4ee0f2f4b18889134cdc63fc934902628da1ba (patch)
tree49dd724b3a2e8ff7cf207256172a3a41c99c205f /test
parent9925785cbd29e02a4e38dfd29112a3a9533fc170 (diff)
downloadgitpython-bd4ee0f2f4b18889134cdc63fc934902628da1ba.tar.gz
add test timeout with the old 10 s timeout
Diffstat (limited to 'test')
-rw-r--r--test/test_remote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_remote.py b/test/test_remote.py
index c29fac65..13da128f 100644
--- a/test/test_remote.py
+++ b/test/test_remote.py
@@ -401,7 +401,7 @@ class TestRemote(TestBase):
res = remote.push(all=True)
self._do_test_push_result(res, remote)
- remote.pull('master')
+ remote.pull('master', timeout=10.0)
# cleanup - delete created tags and branches as we are in an innerloop on
# the same repository
@@ -467,7 +467,7 @@ class TestRemote(TestBase):
# Only for remotes - local cases are the same or less complicated
# as additional progress information will never be emitted
if remote.name == "daemon_origin":
- self._do_test_fetch(remote, rw_repo, remote_repo)
+ self._do_test_fetch(remote, rw_repo, remote_repo, timeout=10.0)
ran_fetch_test = True
# END fetch test