swift-bench/.unittests
Chmouel Boudjnah b207aaca07 Make swift-bench not depending on swift.
Remove the dependence on swift, import the only needed functions from
swift.common.utils to swiftbench.utils

Add tests for utils using mock instead.

Change-Id: I1b69dce750b55f3ee0e999fb5a7100cf811f7ebe
2013-11-24 15:35:49 +01:00

9 lines
115 B
Bash
Executable File

#!/bin/bash
set -e
python setup.py testr --coverage
RET=$?
coverage report -mswiftbench
rm -f .coverage
exit $RET