-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make package compatible with Julia v1.0
- Loading branch information
Showing
14 changed files
with
29 additions
and
51 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,12 +1,12 @@ | ||
language: julia | ||
|
||
os: | ||
- linux | ||
|
||
julia: | ||
- 0.6 | ||
before_script: | ||
- julia --color=yes -e 'Pkg.clone("https://github.com/JuliaFEM/PkgTestSuite.jl.git")' | ||
- julia --color=yes -e 'using PkgTestSuite; init()' | ||
script: | ||
- julia --color=yes -e 'using PkgTestSuite; test()' | ||
- 0.7 | ||
- 1.0 | ||
- nightly | ||
|
||
after_success: | ||
- julia --color=yes -e 'using PkgTestSuite; deploy()' | ||
- julia -e 'cd(Pkg.dir("FEMQuad")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' |
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,2 +1 @@ | ||
julia 0.6 | ||
Logging | ||
julia 0.7 |
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 +1,2 @@ | ||
Documenter | ||
TimerOutputs |
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,27 +1,17 @@ | ||
# This file is a part of JuliaFEM. | ||
# License is MIT: see https://github.com/JuliaFEM/FEMQuad.jl/blob/master/LICENSE | ||
|
||
using Base.Test | ||
using Test | ||
|
||
test_files = String[] | ||
include("../docs/make.jl") | ||
|
||
push!(test_files, "test_glseg.jl") | ||
push!(test_files, "test_glquad.jl") | ||
push!(test_files, "test_glhex.jl") | ||
push!(test_files, "test_gltri.jl") | ||
push!(test_files, "test_gltet.jl") | ||
push!(test_files, "test_glwed.jl") | ||
push!(test_files, "test_glpyr.jl") | ||
|
||
using TimerOutputs | ||
const to = TimerOutput() | ||
@testset "FEMQuad.jl" begin | ||
for fn in test_files | ||
timeit(to, fn) do | ||
include(fn) | ||
end | ||
end | ||
@testset "test_glseg" begin include("test_glseg.jl") end | ||
@testset "test_glhex" begin include("test_glhex.jl") end | ||
@testset "test_gltri" begin include("test_gltri.jl") end | ||
@testset "test_gltet" begin include("test_gltet.jl") end | ||
@testset "test_glwed" begin include("test_glwed.jl") end | ||
@testset "test_glpyr" begin include("test_glpyr.jl") end | ||
end | ||
println() | ||
println("Test statistics:") | ||
println(to) | ||
|
||
include("../docs/deploy.jl") |
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