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 95682fd commit 5c4b660Copy full SHA for 5c4b660
patchwork/tests/test_version.py
@@ -32,4 +32,9 @@ def test_validate_version(self):
32
33
# if the tag is missing from one, it should be missing from the other
34
# (and vice versa)
35
- self.assertEqual(bool(str_match.group(1)), bool(git_match.group(1)))
+ self.assertEqual(
36
+ bool(str_match.group(1)),
37
+ bool(git_match.group(1)),
38
+ f'mismatch between git and version.txt post-release metadata: '
39
+ f'git={git_match.group(1)!r}, version.txt={str_match.group(1)!r}',
40
+ )
0 commit comments