Open-Systems-Pharmacology / OSPSuite.RUtils

Utility functions for Open Systems Pharmacology R packages
https://www.open-systems-pharmacology.org/OSPSuite.RUtils/dev/
GNU General Public License v2.0
1 stars 3 forks source link

Set package version to 1.5 #134

Closed PavelBal closed 1 year ago

PavelBal commented 1 year ago

Builds were having the old version.

PavelBal commented 1 year ago

I don't see why the build is failing?

Yuri05 commented 1 year ago

according to the build log: because the covr package is missing. The coverage is done separately by the GH action, so you can completely remove

on_success:
  - Rscript -e "covr::codecov()"

and also remove - Rscript -e "install.packages('covr', repos = 'http://cran.us.r-project.org', type = 'source')" from appveyor.yml

Yuri05 commented 1 year ago

would also suggest to switch to the binary packages installation in appveyor.yml via R_PKGTYPE: binary (compare https://github.com/Open-Systems-Pharmacology/OSPSuite-R/blob/f621ced968a2f7cf83529118eea9f9f088d17da1/appveyor.yml#L32 ) In this build compilation of some source package which is prerec for covr is failed (for whatever reason, that's why covr was not installed)

codecov-commenter commented 1 year ago

Codecov Report

Patch and project coverage have no change.

Comparison is base (29774ff) 99.53% compared to head (dc275c5) 99.53%.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## develop #134 +/- ## ======================================== Coverage 99.53% 99.53% ======================================== Files 18 18 Lines 214 214 ======================================== Hits 213 213 Misses 1 1 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

PavelBal commented 1 year ago

@Yuri05 Implemented your suggestions.