import pytest into test_tree

This commit is contained in:
Carl Beekhuizen 2020-06-29 16:21:20 +02:00
parent 9557f3cabb
commit ba585f8b8e
No known key found for this signature in database
GPG Key ID: 8F29E54F49E7AAB5

View File

@ -1,6 +1,7 @@
import os import os
import json import json
from py_ecc.bls import G2ProofOfPossession as bls from py_ecc.bls import G2ProofOfPossession as bls
import pytest
from eth2deposit.key_handling.key_derivation.tree import ( from eth2deposit.key_handling.key_derivation.tree import (
@ -25,7 +26,6 @@ def test_hkdf_mod_r(test) -> None:
assert bls.KeyGen(seed) == _HKDF_mod_r(IKM=seed) assert bls.KeyGen(seed) == _HKDF_mod_r(IKM=seed)
@pytest.mark.parametrize( @pytest.mark.parametrize(
'test', 'test',
test_vectors test_vectors