Tests for publishing to Amazon S3.

This commit is contained in:
Andrey Smirnov
2014-10-01 17:48:51 +04:00
parent 1afbae8f7c
commit 5d69871ca4
17 changed files with 500 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ import fnmatch
import sys
from lib import BaseTest
from s3_lib import S3Test
try:
from termcolor import colored
@@ -32,7 +33,8 @@ def run(include_long_tests=False, capture_results=False, tests=None, filters=Non
for name in dir(testModule):
o = getattr(testModule, name)
if not (inspect.isclass(o) and issubclass(o, BaseTest) and o is not BaseTest):
if not (inspect.isclass(o) and issubclass(o, BaseTest) and o is not BaseTest and
o is not S3Test):
continue
if filters: