Fix html rendering on failed functional tests

Remove -e option from shebang

Change-Id: I32fb1c13e20a61476958eabfca7897caa59dccab
This commit is contained in:
sskripnick 2014-11-18 14:43:14 +02:00 committed by Sergey Skripnick
parent 7f4ca8212f
commit e12ccc7d09

View File

@ -1,12 +1,12 @@
#!/bin/sh -ex
#!/bin/bash -x
env
mkdir -p .testrepository
python -m subunit.run discover tests/functional > .testrepository/subunit.log
EXIT_CODE=$?
subunit2pyunit < .testrepository/subunit.log
EXIT_CODE=$?
subunit-stats < .testrepository/subunit.log
exit $EXIT_CODE