Skip to content

Commit

Permalink
fix test elixir paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Jun 28, 2021
1 parent 4cf031f commit 896c495
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Trixi2Vtk"
uuid = "bc1476a1-1ca6-4cc3-950b-c312b255ff95"
authors = ["Michael Schlottke-Lakemper <[email protected]>"]
version = "0.3.2-pre"
version = "0.3.2"

[deps]
Glob = "c27321d9-0574-5035-807b-f59d2c89b15c"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Build Status](https://github.com/trixi-framework/Trixi2Vtk.jl/workflows/CI/badge.svg)](https://github.com/trixi-framework/Trixi2Vtk.jl/actions?query=workflow%3ACI)
[![Coveralls](https://coveralls.io/repos/github/trixi-framework/Trixi2Vtk.jl/badge.svg?branch=main)](https://coveralls.io/github/trixi-framework/Trixi2Vtk.jl?branch=main)
[![License: MIT](https://img.shields.io/badge/License-MIT-success.svg)](https://opensource.org/licenses/MIT)
[![GitHub commits since tagged version](https://img.shields.io/github/commits-since/trixi-framework/Trixi2Vtk.jl/v0.3.1.svg?style=social&logo=github)](https://github.com/trixi-framework/Trixi2Vtk.jl)
[![GitHub commits since tagged version](https://img.shields.io/github/commits-since/trixi-framework/Trixi2Vtk.jl/v0.3.2.svg?style=social&logo=github)](https://github.com/trixi-framework/Trixi2Vtk.jl)

With **Trixi2Vtk.jl** you can convert the HDF5-based output files created by
[Trixi.jl](https://github.com/trixi-framework/Trixi.jl) (solution or restart
Expand Down
6 changes: 3 additions & 3 deletions test/test_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ end
@testset "2D" begin
@testset "TreeMesh" begin
isdir(outdir) && rm(outdir, recursive=true)
run_trixi(joinpath("2d", "elixir_advection_extended.jl"), maxiters=1)
run_trixi(joinpath("tree_2d_dgsem", "elixir_advection_extended.jl"), maxiters=1)

@testset "uniform mesh" begin
if Sys.iswindows()
Expand Down Expand Up @@ -75,7 +75,7 @@ end

@testset "StructuredMesh" begin
isdir(outdir) && rm(outdir, recursive=true)
run_trixi(joinpath("2d", "elixir_advection_waving_flag.jl"), maxiters=1)
run_trixi(joinpath("structured_2d_dgsem", "elixir_advection_waving_flag.jl"), maxiters=1)

@testset "waving flag" begin
test_trixi2vtk("solution_000000.h5", outdir,
Expand Down Expand Up @@ -110,7 +110,7 @@ end

@testset "UnstructuredMesh2D" begin
isdir(outdir) && rm(outdir, recursive=true)
run_trixi(joinpath("2d", "elixir_euler_unstructured_quad_basic.jl"), maxiters=1)
run_trixi(joinpath("unstructured_2d_dgsem", "elixir_euler_basic.jl"), maxiters=1)

@testset "basic" begin
test_trixi2vtk("solution_000000.h5", outdir,
Expand Down
4 changes: 2 additions & 2 deletions test/test_3d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ end
@testset "3D" begin
@testset "TreeMesh" begin
isdir(outdir) && rm(outdir, recursive=true)
run_trixi(joinpath("3d", "elixir_advection_extended.jl"), maxiters=1)
run_trixi(joinpath("tree_3d_dgsem", "elixir_advection_extended.jl"), maxiters=1)

@testset "uniform mesh" begin
test_trixi2vtk("solution_000000.h5", outdir,
Expand All @@ -40,7 +40,7 @@ end

@testset "StructuredMesh" begin
isdir(outdir) && rm(outdir, recursive=true)
run_trixi(joinpath("3d", "elixir_advection_basic_curved.jl"), maxiters=1)
run_trixi(joinpath("structured_3d_dgsem", "elixir_advection_basic.jl"), maxiters=1)

@testset "basic" begin
test_trixi2vtk("solution_000000.h5", outdir,
Expand Down
2 changes: 1 addition & 1 deletion test/test_manual.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ isdir(outdir) && rm(outdir, recursive=true)

@testset "trixi2vtk error triggers" begin
isdir(outdir) && rm(outdir, recursive=true)
run_trixi(joinpath("2d", "elixir_advection_extended.jl"), maxiters=1)
run_trixi(joinpath("tree_2d_dgsem", "elixir_advection_extended.jl"), maxiters=1)

@testset "no input file" begin
@test_throws ErrorException trixi2vtk()
Expand Down

2 comments on commit 896c495

@ranocha
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/39764

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.2 -m "<description of version>" 896c495365b5036ab50b1af972ffabcd206ea09e
git push origin v0.3.2

Please sign in to comment.