Skip to content

Commit

Permalink
Travis skip message fix (pr review)
Browse files Browse the repository at this point in the history
  • Loading branch information
loredanacirstea committed Sep 19, 2018
1 parent 661d488 commit d5c398c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
20 changes: 10 additions & 10 deletions raiden_contracts/tests/test_channel_cooperative_settle.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down
16 changes: 8 additions & 8 deletions raiden_contracts/tests/test_channel_withdraw.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit d5c398c

Please sign in to comment.