Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
34e037d
first draft
Jan 24, 2024
21b1131
style fixes by ruff
sungchun12 Jan 24, 2024
a7b575d
past tense consistency
Jan 24, 2024
ce9c743
working draft of new table
Jan 24, 2024
8925474
style fixes by ruff
sungchun12 Jan 24, 2024
5e9b55d
dbt diffs work, cloud broken for now
Jan 24, 2024
ff99881
remove cached git repos
Jan 24, 2024
8e79b92
efficient naming
Jan 24, 2024
b84fa26
add type changed count
Jan 24, 2024
e222316
reorder for priority on prod changes
Jan 24, 2024
47e4b0e
tabulate value diffs
Jan 24, 2024
9e89281
style fixes by ruff
sungchun12 Jan 24, 2024
2d3398e
less horizontal space needed
Jan 24, 2024
52949d4
leo's feedback
Jan 25, 2024
6d1d265
center align values
Jan 25, 2024
3f23314
consistent formatting
Jan 25, 2024
887ff7e
shorter name same meaning
Jan 25, 2024
076d0e2
row counts and diff values working
Jan 25, 2024
c6157b3
deps impacts works now
Jan 25, 2024
4cff08f
default val
Jan 25, 2024
4c65ceb
more readable
Jan 25, 2024
1c246ce
add primary key used
Jan 26, 2024
9154995
add model specific CI configs
Jan 26, 2024
0afe71c
consistency
Jan 26, 2024
026b4be
conditional headers
Jan 26, 2024
e880caf
style fixes by ruff
sungchun12 Jan 26, 2024
9e4acb0
cleaner implementation
Jan 29, 2024
e5009db
more cleaning
Jan 29, 2024
99fe5d0
consistent format
Jan 29, 2024
a51cff7
fix unchanged calc
Jan 29, 2024
9d9f53d
remove prints
Jan 29, 2024
7677d1a
default value
Jan 29, 2024
eabe47a
draft up tests
Jan 29, 2024
c5d2f80
a couple more tests
Jan 29, 2024
f52c3a3
new version
Jan 29, 2024
edfbf4f
passing tests
Jan 29, 2024
6134ade
style fixes by ruff
sungchun12 Jan 29, 2024
8e9223d
util unit test
Jan 30, 2024
41dcb27
add unit tests
Jan 30, 2024
99f88da
test the templates
Jan 30, 2024
163b3f2
fix type hints
Jan 30, 2024
a7cb6a5
real test no mocking
Jan 31, 2024
248678f
update tests with all the new outputs
Jan 31, 2024
ecadd5a
add more validations for mock
Jan 31, 2024
fc3f341
fix json bug
Jan 31, 2024
4563beb
Merge branch 'master' into evolve-dbt-output
dlawin Feb 6, 2024
6057923
Merge branch 'master' into evolve-dbt-output
sungchun12 Feb 6, 2024
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style fixes by ruff
  • Loading branch information
sungchun12 authored and github-actions[bot] committed Jan 26, 2024
commit e880caf63885d709073353f53ff3b9bfb63bda8c
2 changes: 1 addition & 1 deletion data_diff/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def dbt_diff_string_template(

if is_cloud:
headers = ["columns", "% diff values"]
else:
else:
headers = ["columns", "# diff values"]

diffs_table = tabulate(tabulate_diffs, headers=headers)
Expand Down