summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsroet <sanderroet@hotmail.com>2021-09-10 13:57:34 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-09-18 09:26:28 +0800
commit5d2dfb18777a95165f588d099111b2a553c6a8ca (patch)
tree35ab9c80685bb7c592df9c4b6f760ef8229c5989
parentbd4ee0f2f4b18889134cdc63fc934902628da1ba (diff)
downloadgitpython-5d2dfb18777a95165f588d099111b2a553c6a8ca.tar.gz
also test a call to 'push' with 10s timeout
-rw-r--r--test/test_remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_remote.py b/test/test_remote.py
index 13da128f..243eec29 100644
--- a/test/test_remote.py
+++ b/test/test_remote.py
@@ -406,7 +406,7 @@ class TestRemote(TestBase):
# cleanup - delete created tags and branches as we are in an innerloop on
# the same repository
TagReference.delete(rw_repo, new_tag, other_tag)
- remote.push(":%s" % other_tag.path)
+ remote.push(":%s" % other_tag.path, timeout=10.0)
@skipIf(HIDE_WINDOWS_FREEZE_ERRORS, "FIXME: Freezes!")
@with_rw_and_rw_remote_repo('0.1.6')