Skip to content

Commit

Permalink
Merge branch 'main' into compathelper/new_version/2023-10-29-00-05-43…
Browse files Browse the repository at this point in the history
…-451-04052874994
  • Loading branch information
ranocha authored Jan 3, 2024
2 parents 92d7aea + 2abe112 commit dced43e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ jobs:
env:
PYTHON: ""
- uses: julia-actions/julia-processcoverage@v1
- uses: coverallsapp/github-action@master
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-${{ matrix.version }}-${{ matrix.os }}-${{ matrix.arch }}
parallel: true
path-to-lcov: ./lcov.info
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: success() || failure() # upload artifacts even if tests have failed
with:
name: test-output-files-${{ matrix.version }}-${{ matrix.os }}-${{ matrix.arch }}
Expand All @@ -77,7 +77,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
4 changes: 2 additions & 2 deletions 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]>", "Hendrik Ranocha <[email protected]>"]
version = "0.3.12-pre"
version = "0.3.13-pre"

[deps]
Glob = "c27321d9-0574-5035-807b-f59d2c89b15c"
Expand All @@ -18,6 +18,6 @@ HDF5 = "0.14, 0.15, 0.16, 0.17"
ProgressMeter = "1.3"
StaticArrays = "0.12, 1.0"
TimerOutputs = "0.5"
Trixi = "0.5"
Trixi = "0.5, 0.6"
WriteVTK = "1.7"
julia = "1.7"
4 changes: 2 additions & 2 deletions test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ Trixi = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb"
Documenter = "0.27, 1"
Downloads = "1"
OrdinaryDiffEq = "6"
ReadVTK = "0.1"
Trixi = "0.5"
ReadVTK = "0.1, 0.2"
Trixi = "0.5, 0.6"
19 changes: 15 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
using Test

@testset "Trixi2Vtk" begin
include("test_2d.jl")
include("test_3d.jl")
include("test_manual.jl")
# We use the `TRIXI_TEST` environment variable to determine the subset of tests to execute.
const TRIXI_TEST = get(ENV, "TRIXI_TEST", "all")

@time @testset "Trixi2Vtk" begin
@time if TRIXI_TEST == "all" || TRIXI_TEST == "2d" || TRIXI_TEST == "upstream"
include("test_2d.jl")
end

@time if TRIXI_TEST == "all" || TRIXI_TEST == "3d" || TRIXI_TEST == "upstream"
include("test_3d.jl")
end

@time if TRIXI_TEST == "all" || TRIXI_TEST == "manual"
include("test_manual.jl")
end
end

0 comments on commit dced43e

Please sign in to comment.