Skip to content

Commit

Permalink
chore: fix r tests (#1927)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhamilton723 authored Apr 20, 2023
1 parent 0df97ad commit 1b71c1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ object RTestGen {
| "spark.sql.shuffle.partitions=10",
| "spark.sql.crossJoin.enabled=true")
|
|sc <- spark_connect(master = "local", version = "3.2.3", config = conf)
|sc <- spark_connect(master = "local", version = "3.2.4", config = conf)
|
|""".stripMargin, StandardOpenOption.CREATE)

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
- requests=2.26.0
- pip=21.3
- r-base=4.1.1
- r-sparklyr=1.7.6
- r-sparklyr=1.8.1
- r-devtools=2.4.2
- pip:
- pyarrow>=0.15.0
Expand Down
2 changes: 1 addition & 1 deletion tools/tests/run_r_tests.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ if (!require("sparklyr")) {
library("sparklyr")
}

spark_install(version = "3.2.3", hadoop_version = "3.2")
spark_install(version = "3.2.4", hadoop_version = "3.2")
options("testthat.output_file" = "../../../../r-test-results.xml")
devtools::test(reporter = JunitReporter$new())

0 comments on commit 1b71c1d

Please sign in to comment.