Skip to content

Commit 9211cda

Browse files
committed
Add suite.verbose option
repeat captured errors to stderr, e.g., for CI runs
1 parent 90a038b commit 9211cda

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

suite.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,8 @@ def __init__(self, args):
383383
self.args = args
384384
self.apply_args()
385385

386+
self.verbose = 0 # repeat captured errors to stderr, e.g., for CI runs
387+
386388
# this will hold all of the Repo() objects for the AMReX, source,
387389
# and build directories
388390
self.repos = {}

test_util.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
1515
[main]
1616
17+
verbose = < repeat captured errors to stderr, e.g., for CI runs >
18+
1719
testTopDir = < full path to test output directory >
1820
webTopDir = < full path to test web output directory >
1921
wallclockFile = < name of json file for storing past runtimes, to which .json will be appended;

0 commit comments

Comments
 (0)