forked from pool/python-GitPython
- Update _service to use manualrun, disabledrun is deprecated now.
- Update to version 3.1.34.1693646983.2a2ae77: * prepare patch release * util: close lockfile after opening successfully * update instructions for how to create a release * prepare for next release * Skip now permanently failing test with note on how to fix it * Don't check form of version number * Add a unit test for CVE-2023-40590 * Fix CVE-2023-40590 * feat: full typing for "progress" parameter * Creating a lock now uses python built-in "open()" method to work around docker virtiofs issue * Disable merge_includes in config writers * Apply straight-forward typing fixes * Add missing type annotation * Run black and exclude submodule * Allow explicit casting even when slightly redundant * Ignore remaining [unreachable] type errors * Define supported version for mypy * Do not typecheck submodule * typo * added more resources section * generic hash * redundant code cell * redundant line * fixed tabbing * tabbed all code-blocks * added new section for diffs and formatting * formatting wip * change to formatting - removed = bash cmds OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-GitPython?expand=0&rev=55
This commit is contained in:
@@ -5,8 +5,10 @@
|
||||
test/test_submodule.py | 19 +++++++++++--------
|
||||
4 files changed, 18 insertions(+), 10 deletions(-)
|
||||
|
||||
--- a/test/test_base.py
|
||||
+++ b/test/test_base.py
|
||||
Index: GitPython-3.1.34.1693646983.2a2ae77/test/test_base.py
|
||||
===================================================================
|
||||
--- GitPython-3.1.34.1693646983.2a2ae77.orig/test/test_base.py
|
||||
+++ GitPython-3.1.34.1693646983.2a2ae77/test/test_base.py
|
||||
@@ -109,7 +109,8 @@ class TestBase(_TestBase):
|
||||
assert osp.isdir(osp.join(rw_repo.working_tree_dir, "lib"))
|
||||
assert osp.isdir(rw_repo.working_dir)
|
||||
@@ -17,8 +19,10 @@
|
||||
@with_rw_and_rw_remote_repo("0.1.6")
|
||||
def test_with_rw_remote_and_rw_repo(self, rw_repo, rw_remote_repo):
|
||||
assert not rw_repo.config_reader("repository").getboolean("core", "bare")
|
||||
--- a/test/test_remote.py
|
||||
+++ b/test/test_remote.py
|
||||
Index: GitPython-3.1.34.1693646983.2a2ae77/test/test_remote.py
|
||||
===================================================================
|
||||
--- GitPython-3.1.34.1693646983.2a2ae77.orig/test/test_remote.py
|
||||
+++ GitPython-3.1.34.1693646983.2a2ae77/test/test_remote.py
|
||||
@@ -4,6 +4,7 @@
|
||||
# This module is part of GitPython and is released under
|
||||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
|
||||
@@ -45,18 +49,22 @@
|
||||
def test_fetch_error(self):
|
||||
rem = self.rorepo.remote("origin")
|
||||
with self.assertRaisesRegex(GitCommandError, "[Cc]ouldn't find remote ref __BAD_REF__"):
|
||||
--- a/test/test_repo.py
|
||||
+++ b/test/test_repo.py
|
||||
Index: GitPython-3.1.34.1693646983.2a2ae77/test/test_repo.py
|
||||
===================================================================
|
||||
--- GitPython-3.1.34.1693646983.2a2ae77.orig/test/test_repo.py
|
||||
+++ GitPython-3.1.34.1693646983.2a2ae77/test/test_repo.py
|
||||
@@ -250,6 +250,7 @@ class TestRepo(TestBase):
|
||||
except UnicodeEncodeError:
|
||||
self.fail("Raised UnicodeEncodeError")
|
||||
|
||||
+ @skipIf(os.environ.get('SKIP_GITHUB', 'false') == 'true', 'Gitlab connection error')
|
||||
@with_rw_directory
|
||||
@skip("the referenced repository was removed, and one needs to setup a new password controlled repo under the orgs control")
|
||||
def test_leaking_password_in_clone_logs(self, rw_dir):
|
||||
password = "fakepassword1234"
|
||||
--- a/test/test_submodule.py
|
||||
+++ b/test/test_submodule.py
|
||||
Index: GitPython-3.1.34.1693646983.2a2ae77/test/test_submodule.py
|
||||
===================================================================
|
||||
--- GitPython-3.1.34.1693646983.2a2ae77.orig/test/test_submodule.py
|
||||
+++ GitPython-3.1.34.1693646983.2a2ae77/test/test_submodule.py
|
||||
@@ -453,14 +453,15 @@ class TestSubmodule(TestBase):
|
||||
reason="Cygwin GitPython can't find submodule SHA",
|
||||
raises=ValueError
|
||||
|
||||
Reference in New Issue
Block a user