Skip to content

Commit da8c9ad

Browse files
authored
pytest: less verbose (#422)
disable verbose summaries at the end of each test
1 parent 3a03f7b commit da8c9ad

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/conftest.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ def amrex_init(tmpdir):
3030
amr.initialize(
3131
[
3232
# print AMReX status messages
33-
"amrex.verbose=2",
33+
# consider also 0 (silent) and 2 (FabArray and TileArray/FB/Copy/FillPatch/CrsFineCache usage)
34+
"amrex.verbose=1",
35+
# disable verbose profiler plots at the end of each test
36+
"tiny_profiler.enabled=0",
3437
# throw exceptions and create core dumps instead of
3538
# AMReX backtrace files: allows to attach to
3639
# debuggers

0 commit comments

Comments
 (0)