From b33e3808a65bd4b9f3f861395378dab29383d08e Mon Sep 17 00:00:00 2001 From: Lev Berman Date: Tue, 11 Sep 2018 16:41:27 +0200 Subject: [PATCH] Problem: Test fails if Tendermint is not up. (#2530) Solution: Mark the test with the abci mark since it requires running BigchainDB and Tendermint. Fails since the mark cleanup in #2522. --- tests/web/test_outputs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/web/test_outputs.py b/tests/web/test_outputs.py index db7b718d..77a3f258 100644 --- a/tests/web/test_outputs.py +++ b/tests/web/test_outputs.py @@ -71,6 +71,7 @@ def test_get_outputs_endpoint_with_invalid_spent(client, user_pk): assert res.status_code == 400 +@pytest.mark.abci @pytest.mark.bdb @pytest.mark.usefixtures('inputs') def test_get_divisble_transactions_returns_500(b, client):