We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
check: code
R:
test_function <- function(x){ Sys.sleep(2) x }
remake.yml:
remake.yml
sources: test_function.R targets: all: depends: - test test: depends: remake.yml command: test_function(I(3)) check: code
make() #> [ LOAD ] #> [ READ ] | # loading sources #> < MAKE > all #> [ BUILD ] test | test <- test_function(3) #> [ READ ] | # loading packages #> [ ----- ] all
New remake.yml:
sources: test_function.R targets: all: depends: - test test: depends: remake.yml command: test_function(I(2)) check: code
make() #> [ LOAD ] #> [ READ ] | # loading sources #> < MAKE > all #> [ OK ] test #> [ ----- ] all
check: all seems to work.
check: all
The text was updated successfully, but these errors were encountered:
Thanks, this seems wrong indeed.
Sorry, something went wrong.
No branches or pull requests
R:
remake.yml
:New
remake.yml
:check: all
seems to work.The text was updated successfully, but these errors were encountered: