-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Labels
type: enhancementnew feature or API change, should be merged into features branchnew feature or API change, should be merged into features branch
Description
The following:
r = testdir.runpytest_subprocess(p)
> assert r.ret == 0
E assert 2 == 0
E + where 2 = <RunResult ret=2 len(stdout.lines)=16 len(stderr.lines)=1 duration=0.69s>.ret
would read better as:
r = testdir.runpytest_subprocess(p)
> assert r.ret == 0
E assert 2 == 0
E + where 2 = <RunResult ret=EXIT_INTERRUPTED len(stdout.lines)=16 len(stderr.lines)=1 duration=0.69s>.ret
I.e. it should display "EXIT_INTERRUPTED" (or similar) instead of "2".
Metadata
Metadata
Assignees
Labels
type: enhancementnew feature or API change, should be merged into features branchnew feature or API change, should be merged into features branch