mirror of
https://github.com/lightningd/plugins.git
synced 2026-08-19 13:18:19 +02:00
backup: Temporarily disable no-init test
It is failing since we no longer throw an exception if the daemon dies while we wait for a log.
This commit is contained in:
parent
3592de73c3
commit
e2b8901bb6
3 changed files with 785 additions and 767 deletions
1534
backup/poetry.lock
generated
1534
backup/poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -6,17 +6,17 @@ authors = ["Christian Decker <decker@blockstream.com>"]
|
|||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.7"
|
||||
pyln-client = "0.10.1"
|
||||
pyln-client = "0.12.1"
|
||||
click = "^8.0.4"
|
||||
tqdm = "^4.62.3"
|
||||
psutil = "5.7.0"
|
||||
psutil = "5.9.4"
|
||||
flask = "2.2.2"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
pyln-testing = "0.10.1"
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pyln-testing = "0.12.1"
|
||||
flaky = "^3.7.0"
|
||||
MarkupSafe = "2.0.1"
|
||||
Flask = "1.1.0"
|
||||
itsdangerous = "1.1.0"
|
||||
pytest-timeout = "^2.1.0"
|
||||
pytest-xdist = "^3.1.0"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ from backend import Backend
|
|||
import socketbackend
|
||||
from flaky import flaky
|
||||
from pyln.testing.fixtures import * # noqa: F401,F403
|
||||
from pyln.testing.utils import sync_blockheight
|
||||
from pyln.testing.utils import wait_for, sync_blockheight
|
||||
import os
|
||||
import pytest
|
||||
import subprocess
|
||||
|
|
@ -37,7 +37,7 @@ def test_start(node_factory, directory):
|
|||
assert "backup.py" in plugins
|
||||
|
||||
|
||||
def test_start_no_init(node_factory, directory):
|
||||
def test_start_no_init(node_factory, directory, executor):
|
||||
"""The plugin should refuse to start if we haven't initialized the backup
|
||||
"""
|
||||
bpath = os.path.join(directory, 'lightning-1', 'regtest')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue