Make config check skippable for tests
This commit is contained in:
parent
21843c8b7f
commit
9d3d87d9d5
|
@ -2,11 +2,13 @@ import os
|
|||
|
||||
|
||||
class Config:
|
||||
def __init__(self):
|
||||
def __init__(self, check=True):
|
||||
self.repository = os.environ['RESTIC_REPOSITORY']
|
||||
self.password = os.environ['RESTIC_PASSWORD']
|
||||
self.docker_base_url = os.environ.get('DOCKER_BASE_URL') or "unix://tmp/docker.sock"
|
||||
self.check()
|
||||
|
||||
if check:
|
||||
self.check()
|
||||
|
||||
def check(self):
|
||||
if not self.repository:
|
||||
|
|
Loading…
Reference in New Issue