From eb94ac076dec7e08f4e6c4c55d7c6f60b1b1cbfd Mon Sep 17 00:00:00 2001 From: Christian Schwede Date: Tue, 25 Feb 2014 21:42:17 +0000 Subject: Add functional tests for python-swiftclient Coverage for swiftclient.client is 71% with these tests. Unit tests have been moved into another subdirectory to separate them from functional tests. Change-Id: Ib8c4d78f7169cee893f82906f6388a5b06c45602 --- .functests | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 .functests (limited to '.functests') diff --git a/.functests b/.functests new file mode 100755 index 0000000..05d9002 --- /dev/null +++ b/.functests @@ -0,0 +1,8 @@ +#!/bin/bash +set -e + +python setup.py testr --coverage --testr-args="--concurrency=1 tests.functional" +RET=$? +coverage report -m +rm -f .coverage +exit $RET -- cgit v1.2.1