1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 01:06:50 +00:00

Merge pull request #1094 from enkore/stuff/tests

Travis workers hate him: improve testing speed with one simple trick
This commit is contained in:
TW 2016-05-26 00:14:03 +02:00
commit 7aed2d1d29
3 changed files with 11 additions and 6 deletions

View file

@ -96,9 +96,10 @@ def wrapper(self, args, repository, key, manifest, **kwargs):
class Archiver:
def __init__(self, lock_wait=None):
def __init__(self, lock_wait=None, prog=None):
self.exit_code = EXIT_SUCCESS
self.lock_wait = lock_wait
self.parser = self.build_parser(prog)
def print_error(self, msg, *args):
msg = args and msg % args or msg
@ -1118,7 +1119,7 @@ def preprocess_args(self, args):
self.print_warning(warning)
return args
def build_parser(self, args=None, prog=None):
def build_parser(self, prog=None):
common_parser = argparse.ArgumentParser(add_help=False, prog=prog)
common_group = common_parser.add_argument_group('Common options')
@ -2062,8 +2063,7 @@ def parse_args(self, args=None):
# We can't use argparse for "serve" since we don't want it to show up in "Available commands"
if args:
args = self.preprocess_args(args)
parser = self.build_parser(args)
args = parser.parse_args(args or ['-h'])
args = self.parser.parse_args(args or ['-h'])
update_excludes(args)
return args

View file

@ -27,7 +27,12 @@
from borg.testsuite import has_lchflags, no_lchlfags_because, has_llfuse
from borg.testsuite.platform import fakeroot_detected
from borg import xattr
from borg import xattr, constants
def pytest_configure(config):
# no fixture-based monkey-patching since star-imports are used for the constants module
constants.PBKDF2_ITERATIONS = 1
def pytest_report_header(config, startdir):

View file

@ -159,7 +159,7 @@ def run(self):
print('generating usage docs')
# allows us to build docs without the C modules fully loaded during help generation
from borg.archiver import Archiver
parser = Archiver().build_parser(prog='borg')
parser = Archiver(prog='borg').parser
choices = {}
for action in parser._actions:
if action.choices is not None: