@@ -23,43 +23,19 @@ function run_examples()
2323
2424 example_dir = joinpath (@__DIR__ , " .." , " examples" )
2525
26- modules = [
27- " Example103_BurgersEquation.jl" ,
28- " Example105_NonlinearPoissonEquation.jl" ,
29- " Example106_NonlinearDiffusion.jl" ,
30- " Example108_RobinBoundaryCondition.jl" ,
31- " Example201_PoissonProblem.jl" ,
32- " Example202_MixedPoissonProblem.jl" ,
33- " Example203_PoissonProblemDG.jl" ,
34- # "Example204_LaplaceEVProblem.jl",
35- " Example205_HeatEquation.jl" ,
36- " Example207_AdvectionUpwindDG.jl" ,
37- " Example210_LshapeAdaptivePoissonProblem.jl" ,
38- " Example211_LshapeAdaptiveEQPoissonProblem.jl" ,
39- " Example212_PeriodicElasticity2D.jl" ,
40- " Example220_ReactionConvectionDiffusion.jl" ,
41- " Example225_ObstacleProblem.jl" ,
42- " Example226_Thermoforming.jl" ,
43- " Example230_NonlinearElasticity.jl" ,
44- " Example235_StokesIteratedPenalty.jl" ,
45- " Example240_SVRTEnrichment.jl" ,
46- " Example245_NSEFlowAroundCylinder.jl" ,
47- " Example250_NSELidDrivenCavity.jl" ,
48- " Example252_NSEPlanarLatticeFlow.jl" ,
49- " Example260_AxisymmetricNavierStokesProblem.jl" ,
50- " Example265_FlowTransport.jl" ,
51- " Example270_NaturalConvectionProblem.jl" ,
52- " Example275_OptimalControlStokes.jl" ,
53- " Example280_CompressibleStokes.jl" ,
54- # "Example284_LevelSetMethod.jl",
55- # "Example285_CahnHilliard.jl",
56- " Example290_PoroElasticity.jl" ,
57- " Example301_PoissonProblem.jl" ,
58- " Example310_DivFreeBasis.jl" ,
59- " Example312_PeriodicElasticity3D.jl" ,
60- " Example313_PeriodicPoisson.jl" ,
26+ exclude_examples = [
27+ " Example204_LaplaceEVProblem.jl" ,
28+ " Example206_CoupledSubGridProblems.jl" ,
29+ " Example227_ObstacleProblemLVPP.jl" ,
30+ " Example264_StokesDarcy.jl" ,
31+ " Example282_IncompressibleMHD.jl" ,
32+ " Example284_LevelSetMethod.jl" ,
33+ " Example285_CahnHilliard.jl" ,
34+ " Example295_SlidingDroplet.jl" ,
35+ " Example330_HyperElasticity.jl" ,
6136 ]
6237
38+ modules = filter (∉ (exclude_examples), readdir (example_dir))
6339 return @testset " module examples" begin
6440 @testmodules (example_dir, modules)
6541 end
0 commit comments