Skip to content

Commit 4bddf52

Browse files
committed
make integration tests more tolerant
1 parent c200403 commit 4bddf52

File tree

2 files changed

+6
-19
lines changed

2 files changed

+6
-19
lines changed

test-data

tests/test_integration.py

+5-18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
3-
import filecmp
42
import os
53
import shutil
64
import tempfile
@@ -24,7 +22,6 @@
2422
SYNCED = "synchronized"
2523
UNSYNCED = "unsynchronized"
2624
SKIP = "skip"
27-
FILECMP = "filecmp"
2825
SHOULD_DETECT_ENCODING = "should_detect_encoding"
2926
EXTRA_ARGS = "extra_args"
3027
EXTRA_NO_VALUE_ARGS = "extra_no_value_args"
@@ -51,13 +48,10 @@ def test_path(fname):
5148
unparsed_args.append("--{}".format(extra_key))
5249
args = parser.parse_args(unparsed_args)
5350
truth = test_path(test[SYNCED])
54-
should_filecmp = True
55-
if FILECMP in test:
56-
should_filecmp = test[FILECMP]
5751
should_detect_encoding = None
5852
if SHOULD_DETECT_ENCODING in test:
5953
should_detect_encoding = test[SHOULD_DETECT_ENCODING]
60-
yield args, truth, should_filecmp, should_detect_encoding
54+
yield args, truth, should_detect_encoding
6155

6256

6357
def timestamps_roughly_match(f1, f2):
@@ -66,7 +60,7 @@ def timestamps_roughly_match(f1, f2):
6660
pipe = make_pipeline(parser, extractor)
6761
f1_bitstring = pipe.fit_transform(f1).astype(bool)
6862
f2_bitstring = pipe.fit_transform(f2).astype(bool)
69-
return np.alltrue(f1_bitstring == f2_bitstring)
63+
return np.sum(f1_bitstring == f2_bitstring) / len(f1_bitstring) >= 0.99
7064

7165

7266
def detected_encoding(fname):
@@ -76,10 +70,8 @@ def detected_encoding(fname):
7670

7771

7872
@pytest.mark.integration
79-
@pytest.mark.parametrize(
80-
"args,truth,should_filecmp,should_detect_encoding", gen_synctest_configs()
81-
)
82-
def test_sync_matches_ground_truth(args, truth, should_filecmp, should_detect_encoding):
73+
@pytest.mark.parametrize("args,truth,should_detect_encoding", gen_synctest_configs())
74+
def test_sync_matches_ground_truth(args, truth, should_detect_encoding):
8375
# context manager TemporaryDirectory not available on py2
8476
dirpath = tempfile.mkdtemp()
8577
try:
@@ -88,12 +80,7 @@ def test_sync_matches_ground_truth(args, truth, should_filecmp, should_detect_en
8880
)
8981
args.skip_ssa_info = True
9082
assert ffsubsync.run(args)["retval"] == 0
91-
if should_filecmp:
92-
# uncomment this after verifying that test failures are false positives
93-
# shutil.copy(args.srtout, truth)
94-
assert filecmp.cmp(args.srtout, truth, shallow=False)
95-
else:
96-
assert timestamps_roughly_match(args.srtout, truth)
83+
assert timestamps_roughly_match(args.srtout, truth)
9784
if should_detect_encoding is not None:
9885
assert detected_encoding(args.srtin[0]) == should_detect_encoding
9986
finally:

0 commit comments

Comments
 (0)