From cbc959ef30691d6506f7975adff2da69ed64196c Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Wed, 13 May 2020 13:08:03 +0200 Subject: [PATCH] pytest: Mark test_funding_push as network-specific It checks for both exact values, that may differ due to fees, as well as the unit which varies from network to network. --- tests/test_connection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_connection.py b/tests/test_connection.py index a95455db6..bf5739789 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -821,6 +821,7 @@ def test_funding_toolarge(node_factory, bitcoind): l1.rpc.fundchannel(l2.info['id'], amount) +@unittest.skipIf(TEST_NETWORK != 'regtest', "check_coin_moves is network-specific") def test_funding_push(node_factory, bitcoind): """ Try to push peer some sats """ # We track balances, to verify that accounting is ok.