mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-08 05:50:47 +00:00
Add functional tests for Azure publishing
Signed-off-by: Ryan Gonzalez <ryan.gonzalez@collabora.com>
This commit is contained in:
committed by
André Roth
parent
b8e0aba3cf
commit
91574b53d9
+3
-1
@@ -15,6 +15,7 @@ import subprocess
|
||||
from lib import BaseTest
|
||||
from s3_lib import S3Test
|
||||
from swift_lib import SwiftTest
|
||||
from azure_lib import AzureTest
|
||||
from api_lib import APITest
|
||||
from fs_endpoint_lib import FileSystemEndpointTest
|
||||
|
||||
@@ -82,7 +83,8 @@ 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 SwiftTest and o is not S3Test and o is not APITest and o is not FileSystemEndpointTest):
|
||||
o is not SwiftTest and o is not S3Test and o is not AzureTest and
|
||||
o is not APITest and o is not FileSystemEndpointTest):
|
||||
continue
|
||||
|
||||
newBase = o.__bases__[0]
|
||||
|
||||
Reference in New Issue
Block a user