File tree Expand file tree Collapse file tree 3 files changed +26
-25
lines changed
Expand file tree Collapse file tree 3 files changed +26
-25
lines changed Original file line number Diff line number Diff line change @@ -91,17 +91,17 @@ jobs:
9191 find '${{ runner.temp }}/package' -name 'testthat.Rout*' -exec cat '{}' \; || true
9292 shell : bash
9393
94- - name : Upload test results
95- if : failure()
96- uses : actions/upload-artifact@v4
97- with :
98- name : coverage-test-failures
99- path : ${{ runner.temp }}/package
94+ # - name: Upload test results
95+ # if: failure()
96+ # uses: actions/upload-artifact@v4
97+ # with:
98+ # name: coverage-test-failures
99+ # path: ${{ runner.temp }}/package
100100
101- - uses : codecov/codecov-action@v5
102- with :
103- fail_ci_if_error : ${{ github.event_name != 'pull_request' && true || false }}
104- file : ./cobertura.xml
105- plugin : noop
106- disable_search : true
107- token : ${{ secrets.CODECOV_TOKEN }}
101+ # - uses: codecov/codecov-action@v5
102+ # with:
103+ # fail_ci_if_error: ${{ github.event_name != 'pull_request' && true || false }}
104+ # file: ./cobertura.xml
105+ # plugin: noop
106+ # disable_search: true
107+ # token: ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ ee_auth_ci <- function(token = NULL) {
2828
2929 if (is.null(token )) {
3030 token = os.getenv(" EARTHENGINE_TOKEN" )
31+ print(token )
3132 }
3233 auto_Initialize(token )
3334 print(" ee_auth_ci: Authentication successful!" )
Original file line number Diff line number Diff line change 88
99fprintf <- function (... ) cat(sprintf(... ))
1010
11- if (Sys.getenv(" GITHUB_ACTIONS" ) == " true" ) {
12- fprintf(" RETICULATE_PYTHON: %s\n " , Sys.getenv(" RETICULATE_PYTHON" ))
11+ # if (Sys.getenv("GITHUB_ACTIONS") == "true") {
12+ # fprintf("RETICULATE_PYTHON: %s\n", Sys.getenv("RETICULATE_PYTHON"))
1313
14- Sys.setenv(RETICULATE_PYTHON = Sys.which(" python" )) # Set Python interpreter
15- reticulate :: use_python(Sys.which(" python" )) # double confirm
14+ # Sys.setenv(RETICULATE_PYTHON = Sys.which("python")) # Set Python interpreter
15+ # reticulate::use_python(Sys.which("python")) # double confirm
1616
17- rgeeLite :: ee_auth_ci()
18- } else {
19- rgeeLite :: ee_Init() # Initialize rgeeLite
20- }
17+ # rgeeLite::ee_auth_ci()
18+ # } else {
19+ # rgeeLite::ee_Init() # Initialize rgeeLite
20+ # }
2121
22- library(testthat )
23- library(rgee )
24- library(rgeeLite )
22+ # library(testthat)
23+ # library(rgee)
24+ # library(rgeeLite)
2525
26- test_check(" rgeeLite" )
26+ # test_check("rgeeLite")
You can’t perform that action at this time.
0 commit comments