-
-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1009 fix skipped tests #1038
1009 fix skipped tests #1038
Conversation
Co-authored-by: André Veríssimo <[email protected]> Signed-off-by: Aleksander Chlebowski <[email protected]>
…re-release-cleanup@main
…re-release-cleanup@main
No more skipped tests. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! I think it can be merged as is.
Feel free to accept or discard my only comment as you see best.
I did found an issue when inspecting the teal.data
contents, as the hash of data[["d2"]]
does not match the initial hash.
Issue created on {teal.slice}
insightsengineering/teal.slice#527
rlang::hash(data[["d2"]])
#> [1] "fed25eb8e9c06544ff433b8cbb15379f"
"stopifnot(rlang::hash(d1) == \"f6f90d2c133ca4abdeb2f7a7d85b731e\")", | ||
"stopifnot(rlang::hash(d2) == \"6e30be195b7d914a1311672c3ebf4e4f\")", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't feel strongly about this, but consider generating the hash live
"stopifnot(rlang::hash(d1) == \"f6f90d2c133ca4abdeb2f7a7d85b731e\")", | |
"stopifnot(rlang::hash(d2) == \"6e30be195b7d914a1311672c3ebf4e4f\")", | |
paste0( | |
"stopifnot(rlang::hash(d1) == \"", | |
rlang::hash(data.frame(id = 1:5, pk = c(2, 3, 2, 1, 4), val = 1:5)), | |
"\")" | |
), | |
paste0( | |
"stopifnot(rlang::hash(d2) == \"", | |
rlang::hash(data.frame(id = 1:5, value = 1:5)), | |
"\")" | |
), |
I don't quite understand. This is not connected to this issue, is it? |
@chlebowa I was mentioning the suggestion that calculates the hash instead of using a manual string. Doesn't matter now :-) |
Fixes #1009