98d7946e3c
Add class for represent task config Add integration tests for rally SLA Generate html test results Change-Id: Ifc77d1efad1456df0325fcb0d0d9dca0d9b46866
13 lines
235 B
Bash
Executable File
13 lines
235 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
env
|
|
|
|
mkdir -p .testrepository
|
|
python -m subunit.run discover tests_ci > .testrepository/subunit.log
|
|
EXIT_CODE=$?
|
|
|
|
subunit2pyunit < .testrepository/subunit.log
|
|
subunit-stats < .testrepository/subunit.log
|
|
|
|
exit $EXIT_CODE
|