Skip to content

Commit 37fc6fb

Browse files
committed
Splitted tests.
1 parent 3e840a2 commit 37fc6fb

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tests/integration/report/test_report.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,15 @@ def report_data_fixture():
2020
def test_totals(report_data_fixture):
2121
report_data = get_report_data()
2222
for key in report_data:
23-
if key.endswith("_totals") or key in ["coverages", "lineage"]:
23+
if key.endswith("_totals"):
2424
assert report_data[key] == report_data_fixture[key]
25+
26+
27+
def test_lineage(report_data_fixture):
28+
report_data = get_report_data()
29+
assert report_data["lineage"] == report_data_fixture["lineage"]
30+
31+
32+
def test_coverage(report_data_fixture):
33+
report_data = get_report_data()
34+
assert report_data["coverages"] == report_data_fixture["coverages"]

0 commit comments

Comments
 (0)