Added swift python tests

This commit is contained in:
Sebastien Badia
2015-02-05 16:16:06 +01:00
committed by Sebastien Badia
parent 9004f8578c
commit bc357a19a1
17 changed files with 500 additions and 1 deletions
+2 -1
View File
@@ -10,6 +10,7 @@ import traceback
from lib import BaseTest
from s3_lib import S3Test
from swift_lib import SwiftTest
from api_lib import APITest
try:
@@ -37,7 +38,7 @@ def run(include_long_tests=False, capture_results=False, tests=None, filters=Non
o = getattr(testModule, name)
if not (inspect.isclass(o) and issubclass(o, BaseTest) and o is not BaseTest and
o is not S3Test and o is not APITest):
o is not SwiftTest and o is not S3Test and o is not APITest):
continue
newBase = o.__bases__[0]