mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-04-20 19:38:39 +00:00
Implemented filesystem endpoint with support for hardlinks, symlinks and copy.
This commit is contained in:
@@ -13,6 +13,7 @@ from lib import BaseTest
|
||||
from s3_lib import S3Test
|
||||
from swift_lib import SwiftTest
|
||||
from api_lib import APITest
|
||||
from fs_endpoint_lib import FileSystemEndpointTest
|
||||
|
||||
try:
|
||||
from termcolor import colored
|
||||
@@ -39,7 +40,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 SwiftTest and o is not S3Test and o is not APITest):
|
||||
o is not SwiftTest and o is not S3Test and o is not APITest and o is not FileSystemEndpointTest):
|
||||
continue
|
||||
|
||||
newBase = o.__bases__[0]
|
||||
|
||||
Reference in New Issue
Block a user