Skip to content

Commit

Permalink
updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
WGUNDERWOOD committed Oct 31, 2023
1 parent b48c4d5 commit 60b17aa
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ Manifest.toml
*.pgf
*.png
*.html
*.cov
docs/build
8 changes: 7 additions & 1 deletion make.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
using JuliaFormatter
using MondrianForests
using Pkg
using Coverage

# format
format(MondrianForests)

# test
Pkg.test()
Pkg.test(coverage=true)

# coverage
coverage = process_folder()
covered_lines, total_lines = get_summary(coverage)
println("Coverage: $covered_lines / $total_lines")

# docs
include("docs/make.jl")
Expand Down
10 changes: 5 additions & 5 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ using Distributions
using Suppressor

include("test_tree.jl")
#include("test_forest.jl")
#include("test_debias.jl")
#include("test_lifetime_polynomial.jl")
#include("test_lifetime_gcv.jl")
#include("test_data.jl")
include("test_forest.jl")
include("test_debias.jl")
include("test_lifetime_polynomial.jl")
include("test_lifetime_gcv.jl")
include("test_data.jl")

0 comments on commit 60b17aa

Please sign in to comment.