e12ccc7d09
Remove -e option from shebang Change-Id: I32fb1c13e20a61476958eabfca7897caa59dccab
13 lines
244 B
Bash
Executable File
13 lines
244 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
env
|
|
|
|
mkdir -p .testrepository
|
|
python -m subunit.run discover tests/functional > .testrepository/subunit.log
|
|
|
|
subunit2pyunit < .testrepository/subunit.log
|
|
EXIT_CODE=$?
|
|
subunit-stats < .testrepository/subunit.log
|
|
|
|
exit $EXIT_CODE
|