mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-08 05:50:47 +00:00
Added swift python tests
This commit is contained in:
committed by
Sebastien Badia
parent
9004f8578c
commit
bc357a19a1
+2
-1
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user