From d5c398c09520fa79f180073257c59a963f958cc0 Mon Sep 17 00:00:00 2001 From: Loredana Date: Tue, 18 Sep 2018 15:10:32 +0200 Subject: [PATCH] Travis skip message fix (pr review) https://github.com/raiden-network/raiden-contracts/pull/270#discussion_r218401128 --- .../tests/test_channel_cooperative_settle.py | 20 +++++++++---------- .../tests/test_channel_withdraw.py | 16 +++++++-------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/raiden_contracts/tests/test_channel_cooperative_settle.py b/raiden_contracts/tests/test_channel_cooperative_settle.py index ae983864a..0315f81ea 100644 --- a/raiden_contracts/tests/test_channel_cooperative_settle.py +++ b/raiden_contracts/tests/test_channel_cooperative_settle.py @@ -6,7 +6,7 @@ from web3.exceptions import ValidationError -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_settle_channel_call( token_network, create_channel_and_deposit, @@ -124,7 +124,7 @@ def test_cooperative_settle_channel_call( ).transact({'from': C}) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_settle_channel_signatures( token_network, create_channel_and_deposit, @@ -190,7 +190,7 @@ def test_cooperative_settle_channel_signatures( ).transact({'from': C}) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_settle_channel_0( custom_token, token_network, @@ -242,7 +242,7 @@ def test_cooperative_settle_channel_0( ) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_settle_channel_00( custom_token, token_network, @@ -294,7 +294,7 @@ def test_cooperative_settle_channel_00( ) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_settle_channel_state( custom_token, token_network, @@ -347,7 +347,7 @@ def test_cooperative_settle_channel_state( ) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_settle_channel_state_withdraw( custom_token, token_network, @@ -405,7 +405,7 @@ def test_cooperative_settle_channel_state_withdraw( ) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_settle_channel_bigger_withdraw( custom_token, token_network, @@ -449,7 +449,7 @@ def test_cooperative_settle_channel_bigger_withdraw( ).transact({'from': C}) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_settle_channel_wrong_balances( custom_token, token_network, @@ -528,7 +528,7 @@ def test_cooperative_settle_channel_wrong_balances( ).transact({'from': C}) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_close_replay_reopened_channel( get_accounts, token_network, @@ -602,7 +602,7 @@ def test_cooperative_close_replay_reopened_channel( ).transact({'from': B}) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_cooperative_settle_channel_event( get_accounts, token_network, diff --git a/raiden_contracts/tests/test_channel_withdraw.py b/raiden_contracts/tests/test_channel_withdraw.py index 88bc906fe..55f1ff321 100644 --- a/raiden_contracts/tests/test_channel_withdraw.py +++ b/raiden_contracts/tests/test_channel_withdraw.py @@ -17,7 +17,7 @@ ) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_withdraw_call( token_network, create_channel_and_deposit, @@ -110,7 +110,7 @@ def test_withdraw_call( ).transact({'from': A}) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_withdraw_wrong_state( web3, token_network, @@ -163,7 +163,7 @@ def test_withdraw_wrong_state( withdraw_channel(channel_identifier, A, withdraw_A, B) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_withdraw_bigger( web3, token_network, @@ -192,7 +192,7 @@ def test_withdraw_bigger( withdraw_channel(channel_identifier, A, deposit_A + deposit_B - 7, B) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_withdraw_wrong_signers( web3, token_network, @@ -239,7 +239,7 @@ def test_withdraw_wrong_signers( ).transact({'from': C}) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_withdraw_wrong_signature_content( web3, token_network, @@ -338,7 +338,7 @@ def test_withdraw_wrong_signature_content( ).transact({'from': A}) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_withdraw_channel_state( get_accounts, token_network, @@ -427,7 +427,7 @@ def test_withdraw_channel_state( ) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_withdraw_replay_reopened_channel( web3, token_network, @@ -507,7 +507,7 @@ def test_withdraw_replay_reopened_channel( ).transact({'from': A}) -@pytest.mark.skip(reason='Delayed to another milestone') +@pytest.mark.skip(reason='Delayed until another milestone') def test_withdraw_event( token_network, create_channel_and_deposit,