Add functional tests for Azure publishing

Signed-off-by: Ryan Gonzalez <ryan.gonzalez@collabora.com>
This commit is contained in:
Ryan Gonzalez
2022-05-17 17:48:38 -05:00
committed by André Roth
parent b8e0aba3cf
commit 91574b53d9
17 changed files with 535 additions and 1 deletions
+3 -1
View File
@@ -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]