Skip to content

Commit fb8e39d

Browse files
committed
misc: Make parallel tests more verbose
1 parent aa9925a commit fb8e39d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,10 @@ def parallel(item, m):
187187
testname = get_testname(item)
188188
# Only spew tracebacks on rank 0.
189189
# Run xfailing tests to ensure that errors are reported to calling process
190-
args = ["-n", "1", pyversion, "-m", "pytest", "-s", "--runxfail", "-qq", testname]
190+
args = ["-n", "1", pyversion, "-m", "pytest", "-s", "--runxfail", "-v", testname]
191191
if nprocs > 1:
192192
args.extend([":", "-n", "%d" % (nprocs - 1), pyversion, "-m", "pytest",
193-
"-s", "--runxfail", "--tb=no", "-qq", "--no-summary", testname])
193+
"-s", "--runxfail", "-v", "--no-summary", testname])
194194
# OpenMPI requires an explicit flag for oversubscription. We need it as some
195195
# of the MPI tests will spawn lots of processes
196196
if mpi_distro == 'OpenMPI':

0 commit comments

Comments
 (0)