From abc5183d42f4b5296d2d84e4a4eb3c76298b8bdf Mon Sep 17 00:00:00 2001 From: Sylvain Bellemare Date: Tue, 15 May 2018 02:12:27 +0200 Subject: [PATCH] Mark test for not yet fixed issue #59 with xfail --- test/test_binaryagreement.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/test_binaryagreement.py b/test/test_binaryagreement.py index 919ee82..6b7b837 100644 --- a/test/test_binaryagreement.py +++ b/test/test_binaryagreement.py @@ -266,7 +266,9 @@ def _test_binaryagreement(N=4, f=1, seed=None): def test_binaryagreement(): for i in range(5): _test_binaryagreement(seed=i) + +@mark.xfail( + raises=NotImplementedError, + reason='Place holder for https://github.com/amiller/HoneyBadgerBFT/issues/59') def test_issue59_attack(): - """ Place holder for https://github.com/amiller/HoneyBadgerBFT/issues/59 - """ raise NotImplementedError("Placeholder test failure for Issue #59")