Skip to content

Commit

Permalink
Avoid writing file reports during testing
Browse files Browse the repository at this point in the history
  • Loading branch information
bgctw committed Dec 8, 2017
1 parent 9fae01e commit af6beb9
Show file tree
Hide file tree
Showing 21 changed files with 1,172 additions and 1,176 deletions.
5 changes: 2 additions & 3 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
^.*\.Rproj$
^.*\.Rproj$
^\.Rproj\.user$
^README\.Rmd$
^README\.md$
Expand All @@ -11,7 +11,6 @@ vignettes/cache
^tmp$
^.git$
^.gitignore$
^.project$ # added by eclipse
^.project$
^cranComments.md$

^\.travis\.yml$
12 changes: 2 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,28 @@
# History files
.Rhistory
.Rapp.history

# Session Data files
.RData

# Example code in package build process
*-Ex.R

# Output files from R CMD build
/*.tar.gz

# Output files from R CMD check
/*.Rcheck/

# RStudio files
.Rproj.user/

# produced vignettes
vignettes/*.html
vignettes/*.pdf

# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth

# knitr and R markdown default cache directories
/*_cache/
/cache/

# Temporary files created by R markdown
*.utf8.md
*.knit.md
/.project
/.svn

.Rproj.user
*.Rproj
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r

language: R
sudo: false
cache: packages

git:
depth: 3
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r

language: R
sudo: false
cache: packages

git:
depth: 3
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: logitnorm
Title: Functions for the Logitnormal Distribution
Version: 0.8.34
Version: 0.8.35
Date: 2017-03-14
Author: Thomas Wutzler
Maintainer: Thomas Wutzler <[email protected]>
Expand Down
8 changes: 4 additions & 4 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
exportPattern("^[^\\.]") #exports all variables that do not start with a period.

importFrom("stats", "dnorm", "integrate", "optim", "optimize",
"plogis", "pnorm", "qlogis", "qnorm", "rnorm")
exportPattern("^[^\\.]") #exports all variables that do not start with a period.
importFrom("stats", "dnorm", "integrate", "optim", "optimize",
"plogis", "pnorm", "qlogis", "qnorm", "rnorm")
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# logitnorm 0.8.35
Avoid writing file reports during testing and installation.

# logitnorm 0.8.33

## New features
Expand Down
Loading

0 comments on commit af6beb9

Please sign in to comment.