forked from pool/python-GitPython
* prepare next release * Add test asserting that get_values works by itself * Update cmd.py * Fix RecursionError when iterating streams * Update docs * Add additional assertions to test_base.py * Updated diff test to use different similarity thresholds * Add check to test bare repo * Added diff test to disable rename detection * fixed lint error * Enable user to override default diff -M arg * Remove optional from two member variables * Fix timezone parsing functions for non-hour timezones * Raise exception if return code from check-ignore is not 1 * Add test to verify GitCommandError is raised when check-ignore is run against a file behind a symlink * Add test_ignored_items_reported * Lint with Flake8 via pre-commit * Upgrade Python syntax with pyupgrade --py37-plus * Fix typo * Declare support for Python 3.11 * fix files list on file rename * get_values eagerly loads sections before return * Fix some resource leaks by open file handles * fix clone_from_unsafe_protocol tests * replace tempfile.mkdtemp w/ tempfile.TemporaryDirectory * fix/add allow_unsafe_* params in docstrings + fix typo * tests: Use `command -v` instead of third-party `which` program * Fix Sphinx rendering errors - Give up on tests for now, gh#gitpython-developers/GitPython#914 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-GitPython?expand=0&rev=51
18 lines
580 B
Diff
18 lines
580 B
Diff
---
|
|
test/test_util.py | 4 +---
|
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
|
|
|
--- a/test/test_util.py
|
|
+++ b/test/test_util.py
|
|
@@ -173,9 +173,7 @@ class TestUtils(TestBase):
|
|
self.assertRaises(IOError, wait_lock._obtain_lock)
|
|
elapsed = time.time() - start
|
|
extra_time = 0.02
|
|
- if is_win:
|
|
- # for Appveyor
|
|
- extra_time *= 6 # NOTE: Indeterministic failures here...
|
|
+ extra_time *= 6 # NOTE: Indeterministic failures here...
|
|
self.assertLess(elapsed, wait_time + extra_time)
|
|
|
|
def test_user_id(self):
|