Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Reproducible Builds
diffoscope
Compare revisions
f68a087216f39dc8bea4346e8d04e2cd70845b3a...b98ff6dd1a3698b358f9eda448f00d5b80ad62bf
Commits (2)
Update test to match new case-level output.
· 99406e9b
Chris Lamb
authored
Apr 22, 2020
Gbp-Dch: ignore
99406e9b
releasing package diffoscope version 142
· b98ff6dd
Chris Lamb
authored
Apr 22, 2020
b98ff6dd
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
b98ff6dd
diffoscope (142)
UNRELEASED
; urgency=medium
diffoscope (142)
unstable
; urgency=medium
* WIP (generated upon release).
[ Chris Lamb ]
* Render multiline difference comments in a way to show indentation.
(Closes: reproducible-builds/diffoscope#101)
* Correct parsing of "./setup.py test --pytest-args ...".
* Capitalise "Ordering differences only" in text comparison comments.
* Don't include the JSON similarity percentage if it is 0.0%.
[ Ben Hutchings ]
* Document how --exclude arguments are matched against filenames.
[ Vagrant Cascadian ]
* Add external tool reference for h5dump on Guix.
-- Chris Lamb <lamby@debian.org> Wed,
15
Apr 2020 1
9
:3
6
:1
5
+0100
-- Chris Lamb
<lamby
@
debian.org
>
Wed,
22
Apr 2020 1
6
:3
5
:1
4
+0100
diffoscope (141) unstable; urgency=medium
...
...
diffoscope/__init__.py
View file @
b98ff6dd
...
...
@@ -18,4 +18,4 @@
# You should have received a copy of the GNU General Public License
# along with diffoscope. If not, see <https://www.gnu.org/licenses/>.
VERSION
=
"14
1
"
VERSION
=
"14
2
"
tests/comparators/test_text.py
View file @
b98ff6dd
...
...
@@ -95,5 +95,5 @@ text_order2 = load_fixture('text_order2')
def
test_ordering_differences
(
text_order1
,
text_order2
):
difference
=
text_order1
.
compare
(
text_order2
)
assert
difference
.
comments
==
[
'
o
rdering differences only'
]
assert
difference
.
comments
==
[
'
O
rdering differences only'
]
assert
difference
.
unified_diff
==
get_data
(
'text_order_expected_diff'
)