You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
set -e
|
|
|
|
export OS_TEST_PATH='tests.functional'
|
|
export PYTHON='coverage run --source swiftclient --parallel-mode'
|
|
stestr run --concurrency=1
|
|
|
|
RET=$?
|
|
coverage combine
|
|
coverage html -d cover
|
|
coverage xml -o cover/coverage.xml
|
|
coverage report -m
|
|
rm -f .coverage
|
|
exit $RET
|