Skip to content

Commit

Permalink
Merge #1408
Browse files Browse the repository at this point in the history
1408: Uncomment tests r=charleskawczynski a=charleskawczynski

Looks like these tests were accidentally commented in 6ff2dd2

Co-authored-by: Charles Kawczynski <kawczynski.charles@gmail.com>
  • Loading branch information
bors[bot] and charleskawczynski authored Aug 3, 2023
2 parents 2f4e3c3 + 0dd9832 commit 5424526
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1175,6 +1175,8 @@ steps:
- "julia --color=yes --project=examples examples/hybrid/sphere/hadley_circulation.jl"
artifact_paths:
- "examples/hybrid/sphere/output/hadley_circulation/*"
agents:
slurm_mem: 20GB

- label: ":computer: Float 64 3D sphere baroclinic wave (ρe)"
key: "cpu_baroclinic_wave_rho_e_float64"
Expand Down
6 changes: 3 additions & 3 deletions test/Fields/field.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function spectral_space_2D(; n1 = 1, n2 = 1, Nij = 4)
space = Spaces.SpectralElementSpace2D(grid_topology, quad)
return space
end
#=

@testset "1×1 2D domain space" begin
Nij = 4
n1 = n2 = 1
Expand Down Expand Up @@ -422,7 +422,7 @@ end
coord = Geometry.XPoint(FT(π))
space = Spaces.PointSpace(context, coord)
@test parent(Spaces.local_geometry_data(space)) ==
FT[Geometry.component(coord, 1), 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]
FT[Geometry.component(coord, 1), 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]
field = Fields.coordinate_field(space)
@test field isa Fields.PointField
@test Fields.field_values(field)[] == coord
Expand Down Expand Up @@ -668,7 +668,7 @@ end
C .= Ref(zero(eltype(C)))
@test all(==(0.0), parent(C))
end
=#

function integrate_bycolumn!(∫y, Y)
Fields.bycolumn(axes(Y.y)) do colidx
Operators.column_integral_definite!(∫y[colidx], Y.y[colidx])
Expand Down

0 comments on commit 5424526

Please sign in to comment.