From 6263c6779e8196a14d0760d4f8f9e01d12d4ba2d Mon Sep 17 00:00:00 2001 From: z-bowen Date: Wed, 8 Aug 2018 15:16:30 +0200 Subject: [PATCH] Problem: Used `@pytest.skip` instead of `@pytest.mark.skip` Solution: Fixed --- tests/commands/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index 1aa8d9c7..2f5dfa39 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -346,7 +346,7 @@ class MockResponse(): # @pytest.mark.execute # @patch('bigchaindb.lib.BigchainDB.get_validators') # @pytest.mark.abci -@pytest.skip +@pytest.mark.skip def test_upsert_validator_new_with_tendermint(b, priv_validator_path, user_sk, monkeypatch): """WIP: Will be fixed and activated in the next PR """