diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2015-05-14 00:21:12 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2015-05-14 00:21:47 +0200 |
commit | 01c69fcff8c5a82b4c80faaeb44ff00827e792ca (patch) | |
tree | 5aa6d4c2a339980b726d7f02d906b73c602a885b /GNUmakefile | |
parent | 42739646dc36ff74d43b638fc2c4f5259496e2b9 (diff) |
Start of migration from RUnit to testthat
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 126dede1..b731166b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -18,13 +18,13 @@ SDDIR ?= $(RFSVN)/www/mkin_static pkgfiles = NEWS \ data/* \ DESCRIPTION \ - inst/unitTests* \ inst/staticdocs/README \ man/* \ NAMESPACE \ R/* \ README.md \ tests/* \ + tests/testthat* \ TODO \ vignettes/* @@ -69,7 +69,7 @@ clean: test: install-no-vignettes cd tests;\ - "$(RBIN)/Rscript" doRUnit.R + "$(RBIN)/Rscript" testthat.R vignettes/mkin.pdf: vignettes/mkin.Rnw "$(RBIN)/Rscript" -e "tools::buildVignette(file = 'vignettes/mkin.Rnw', dir = 'vignettes')" |