From 7e10d8ad2bf00a743d8fec23c87f0506a12508a4 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Tue, 9 Jan 2024 22:29:06 +0800 Subject: [PATCH] Set `--bls-type` default value to `fastest` (#3567) --- tests/core/pyspec/eth2spec/test/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/pyspec/eth2spec/test/conftest.py b/tests/core/pyspec/eth2spec/test/conftest.py index e8478050f..6b1f99db2 100644 --- a/tests/core/pyspec/eth2spec/test/conftest.py +++ b/tests/core/pyspec/eth2spec/test/conftest.py @@ -44,7 +44,7 @@ def pytest_addoption(parser): help="bls-default: make tests that are not dependent on BLS run without BLS" ) parser.addoption( - "--bls-type", action="store", type=str, default="py_ecc", choices=["py_ecc", "milagro", "arkworks", "fastest"], + "--bls-type", action="store", type=str, default="fastest", choices=["py_ecc", "milagro", "arkworks", "fastest"], help=( "bls-type: use specified BLS implementation;" "fastest: use milagro for signatures and arkworks for everything else (e.g. KZG)"