Skip to content

Commit db4e6df

Browse files
committed
fix testset parameters
1 parent a5a124a commit db4e6df

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/test_threaded.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module TestThreaded
22

33
include("test_trixiatmo.jl")
44

5-
@testset "Threaded tests" begin
5+
@testset verbose=true showtiming=true "Threaded tests" begin
66
#! format: noindent
77

88
@trixi_testset "elixir_moist_euler_moist_bubble" begin

test/test_trixi_consistency.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include("test_trixiatmo.jl")
66
outdir = "out"
77
isdir(outdir) && rm(outdir, recursive = true)
88

9-
@trixi_testset verbose=true showtiming=true "Dry air consistency check" begin
9+
@trixi_testset "Dry air consistency check" begin
1010
using Trixi
1111
using TrixiAtmo: CompressibleMoistEulerEquations2D
1212

test/test_type.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include("test_trixiatmo.jl")
1010
outdir = "out"
1111
isdir(outdir) && rm(outdir, recursive = true)
1212

13-
@testset "Test Type Stability" begin
13+
@testset verbose=true showtiming=true "Test Type Stability" begin
1414
@timed_testset "Compressible Euler Potential Temperature 1D" begin
1515
for RealT in (Float32, Float64)
1616
equations = @inferred CompressibleEulerPotentialTemperatureEquations1D(c_p = RealT(1004),

0 commit comments

Comments
 (0)