Fix config pickup behaviour so that both examples and usage-examples build

correctly
This commit is contained in:
datdenkikniet 2023-04-15 21:16:45 +02:00
parent 859cd418f0
commit d838286de6
4 changed files with 39 additions and 15 deletions

View file

@ -100,8 +100,8 @@ impl fmt::Display for TestRunError {
TestRunError::CommandError(e) => {
write!(
f,
"Command failed with exit status {}: {}",
e.exit_status, e.stdout
"Command failed with exit status {}: {} {}",
e.exit_status, e.stdout, e.stderr
)
}
TestRunError::PathConversionError(p) => {