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 3e840a2 commit 37fc6fbCopy full SHA for 37fc6fb
tests/integration/report/test_report.py
@@ -20,5 +20,15 @@ def report_data_fixture():
20
def test_totals(report_data_fixture):
21
report_data = get_report_data()
22
for key in report_data:
23
- if key.endswith("_totals") or key in ["coverages", "lineage"]:
+ if key.endswith("_totals"):
24
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
34
+ assert report_data["coverages"] == report_data_fixture["coverages"]
0 commit comments