From 79f004ab2980506049875e5da06b398b207b5ca0 Mon Sep 17 00:00:00 2001 From: Arthur Date: Fri, 3 Sep 2021 10:37:29 +0100 Subject: [PATCH] donnt insatll vegan in testing --- test/runtests.jl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 78f3673..c2c95d8 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,5 @@ using BetaDispersion, Distances, StatsBase,BenchmarkTools, RCall using Test -vegan = "vegan" -R"install.packages($vegan)" R"library(vegan)" # Rcall uses a single thread, so make sure Julia is using only ine thread as well @testset "BetaDispersion.jl" begin @@ -47,6 +45,4 @@ R"library(vegan)" r = @benchmark R"permutest($dispr,pairwise = TRUE, permutations = 999)" #11.515 s @test mean(j.times) < mean(r.times) - - end