Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 511: Minimal fix for benchmarkCI #519

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
julia --project=benchmark -e 'using Pkg;
Pkg.rm("EpiAware");
Pkg.add(url="https://github.com/SamuelBrand1/BenchmarkCI.jl");
Pkg.resolve();
Pkg.instantiate();
Pkg.develop(path = "./EpiAware")'
Expand Down
1 change: 0 additions & 1 deletion benchmark/Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[deps]
BenchmarkCI = "20533458-34a3-403d-a444-e18f38190b5b"
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
DynamicPPL = "366bfd00-2699-11ea-058f-f148b4cae6d8"
Expand Down
2 changes: 1 addition & 1 deletion benchmark/bench/EpiInfModels/DirectInfections.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let
using Distributions, OrdinaryDiffEq
using Distributions
gen_int = [0.2, 0.3, 0.5]
transformation = exp

Expand Down
3 changes: 1 addition & 2 deletions benchmark/bench/EpiInfModels/EpiInfModels.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
module BenchEpiInfModels

using BenchmarkTools, TuringBenchmarking, EpiAware, Distributions, OrdinaryDiffEq
using BenchmarkTools, TuringBenchmarking, EpiAware, Distributions
suite = BenchmarkGroup()

include("../../make_epiaware_suite.jl")
include("DirectInfections.jl")
include("ExpGrowthRate.jl")
include("ODEProcess.jl")

end
BenchEpiInfModels.suite
24 changes: 0 additions & 24 deletions benchmark/bench/EpiInfModels/InfectionODEProcess.jl

This file was deleted.

Loading