You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recent sparklyr GHA R checks are failing on parsnip tests. These tests are new, and dev-version package testing is not yet working in GHA for sparklyr, so we didn't catch it until now.
reprex:
library(sparklyr)
library(parsnip)
sc<- spark_connect("local")
iris_tbl<- sdf_copy_to(sc, iris)
decision_tree(engine="spark") %>%
set_mode("classification") %>%
fit(Species~Sepal_Length+Petal_Length, iris_tbl)
#> Error in eval_tidy(env$formula[[2]], env$data): object 'Species' not found
spark_disconnect(sc)
It looks like this is the check in which it happens:
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
Recent
sparklyr
GHA R checks are failing onparsnip
tests. These tests are new, and dev-version package testing is not yet working in GHA forsparklyr
, so we didn't catch it until now.reprex:
It looks like this is the check in which it happens:
parsnip/R/fit_helpers.R
Line 9 in b6db676
Also confirmed here: https://github.com/sparklyr/sparklyr/runs/5483357141?check_suite_focus=true#step:19:1469
The text was updated successfully, but these errors were encountered: