libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 60948b2df4410adfb88a81b7e1f426c1c444bce6
parent af48123174f2bf88a81df868bc477d9d3e64031c
Author: MS <ms@taler.net>
Date:   Tue, 26 Jan 2021 15:55:42 +0100

alternative to xfail

Diffstat:
Mintegration-tests/tests.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration-tests/tests.py b/integration-tests/tests.py @@ -127,7 +127,7 @@ def setup_function(): prepareNexus() except Exception: teardown_function() - pytest.xfail("Failed to setup this test") + assert False, "Setup function failed" def teardown_function(): dropSandboxTables()