Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Orion Weller committed Aug 15, 2019
1 parent ef26166 commit 7d16add
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/testthat/test_ensemble_voting.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ PrepareNumericTitanic <- function() {

print("Listing dirs")
print(list.files(getwd()))
print(list.files("ModelComparison"))
print(getwd())

titanic <- read.csv("titanic.csv")
titanic <- titanic[, c("Survived", "Age",
"Siblings.Spouses.Aboard", "Parents.Children.Aboard", "Fare")]
Expand Down
2 changes: 2 additions & 0 deletions tests/testthat/test_package_integration.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ PrepareNumericTitanic <- function() {

print("Listing dirs")
print(list.files(getwd()))
print(list.files("ModelComparison"))
print(getwd())
titanic <- read.csv("titanic.csv")
titanic <- titanic[, c("Survived", "Age",
"Siblings.Spouses.Aboard", "Parents.Children.Aboard", "Fare")]
Expand Down
2 changes: 2 additions & 0 deletions tests/testthat/test_plot_metrics.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ PrepareNumericTitanic <- function() {

print("Listing dirs")
print(list.files(getwd()))
print(list.files("ModelComparison"))
print(getwd())
titanic <- read.csv("titanic.csv")
titanic <- titanic[, c("Survived", "Age",
"Siblings.Spouses.Aboard", "Parents.Children.Aboard", "Fare")]
Expand Down
2 changes: 2 additions & 0 deletions tests/testthat/test_validation_methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ PrepareNumericTitanic <- function() {

print("Listing dirs")
print(list.files(getwd()))
print(list.files("ModelComparison"))
print(getwd())
titanic <- read.csv("titanic.csv")
titanic <- titanic[, c("Survived", "Age",
"Siblings.Spouses.Aboard", "Parents.Children.Aboard", "Fare")]
Expand Down
2 changes: 2 additions & 0 deletions tests/testthat/test_voting.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ library(ModelComparison)
PrepareNumericTitanic <- function() {
print("Listing dirs")
print(list.files(getwd()))
print(list.files("ModelComparison"))
print(getwd())
titanic <- read.csv("titanic.csv")
titanic <- titanic[, c("Survived", "Age",
"Siblings.Spouses.Aboard", "Parents.Children.Aboard", "Fare")]
Expand Down

0 comments on commit 7d16add

Please sign in to comment.