We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a625d08 commit 057514eCopy full SHA for 057514e
test/test_repo.py
@@ -422,7 +422,8 @@ def test_tag_to_full_tag_path(self):
422
self.rorepo.tag(tag)
423
except ValueError as valueError:
424
value_errors.append(valueError.args[0])
425
- raise ValueError('. '.join(value_errors))
+ if value_errors:
426
+ raise ValueError('. '.join(value_errors))
427
428
def test_archive(self):
429
tmpfile = tempfile.mktemp(suffix='archive-test')
0 commit comments