mirror of https://github.com/borgbackup/borg.git
work around spurious log level related test fail when using pytest-xdist
This commit is contained in:
parent
a1d223cec0
commit
2938a5f6fb
|
@ -1,3 +1,4 @@
|
||||||
|
import logging
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import sys
|
import sys
|
||||||
|
@ -440,6 +441,8 @@ class RemoteRepositoryTestCase(RepositoryTestCase):
|
||||||
|
|
||||||
assert self.repository.borg_cmd(None, testing=True) == [sys.executable, '-m', 'borg.archiver', 'serve']
|
assert self.repository.borg_cmd(None, testing=True) == [sys.executable, '-m', 'borg.archiver', 'serve']
|
||||||
args = MockArgs()
|
args = MockArgs()
|
||||||
|
# XXX without next line we get spurious test fails when using pytest-xdist, root cause unknown:
|
||||||
|
logging.getLogger().setLevel(logging.INFO)
|
||||||
# note: test logger is on info log level, so --info gets added automagically
|
# note: test logger is on info log level, so --info gets added automagically
|
||||||
assert self.repository.borg_cmd(args, testing=False) == ['borg', 'serve', '--umask=077', '--info']
|
assert self.repository.borg_cmd(args, testing=False) == ['borg', 'serve', '--umask=077', '--info']
|
||||||
args.remote_path = 'borg-0.28.2'
|
args.remote_path = 'borg-0.28.2'
|
||||||
|
|
Loading…
Reference in New Issue