-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix eval module scoping, escape issues, and deprecations for v0.7 (#77)
- Loading branch information
Showing
11 changed files
with
130 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
julia 0.6 | ||
Compat 0.26 | ||
Compat 0.33 | ||
JSON |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
module TrialsTests | ||
|
||
using Base.Test | ||
using BenchmarkTools | ||
using Compat | ||
using Compat.Test | ||
|
||
######### | ||
# Trial # | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
print("Testing Parameters..."); tic() | ||
include("ParametersTests.jl") | ||
println("done (took ", toq(), " seconds)") | ||
print("Testing Parameters...") | ||
took_seconds = @elapsed include("ParametersTests.jl") | ||
println("done (took ", took_seconds, " seconds)") | ||
|
||
print("Testing Trial/TrialEstimate/TrialRatio/TrialJudgement..."); tic() | ||
include("TrialsTests.jl") | ||
println("done (took ", toq(), " seconds)") | ||
print("Testing Trial/TrialEstimate/TrialRatio/TrialJudgement...") | ||
took_seconds = @elapsed include("TrialsTests.jl") | ||
println("done (took ", took_seconds, " seconds)") | ||
|
||
print("Testing BenchmarkGroup..."); tic() | ||
include("GroupsTests.jl") | ||
println("done (took ", toq(), " seconds)") | ||
print("Testing BenchmarkGroup...") | ||
took_seconds = @elapsed include("GroupsTests.jl") | ||
println("done (took ", took_seconds, " seconds)") | ||
|
||
print("Testing execution..."); tic() | ||
include("ExecutionTests.jl") | ||
println("done (took ", toq(), " seconds)") | ||
print("Testing execution...") | ||
took_seconds = @elapsed include("ExecutionTests.jl") | ||
println("done (took ", took_seconds, " seconds)") | ||
|
||
print("Testing serialization..."); tic() | ||
include("SerializationTests.jl") | ||
println("done (took ", toq(), " seconds)") | ||
print("Testing serialization...") | ||
took_seconds = @elapsed include("SerializationTests.jl") | ||
println("done (took ", took_seconds, " seconds)") |