python3Packages.fastecdsa: migrate to disabledTestPaths
This commit is contained in:
parent
c95f0d0fb0
commit
f1b83980d3
1 changed files with 5 additions and 4 deletions
|
@ -8,6 +8,7 @@
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "fastecdsa";
|
pname = "fastecdsa";
|
||||||
version = "2.2.2";
|
version = "2.2.2";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
@ -18,10 +19,10 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
# skip tests which require being online to download test vectors
|
disabledTestPaths = [
|
||||||
pytestFlags = [
|
# skip tests which require being online to download test vectors
|
||||||
"--ignore=fastecdsa/tests/test_wycheproof_vectors.py"
|
"fastecdsa/tests/test_wycheproof_vectors.py"
|
||||||
"--ignore=fastecdsa/tests/test_rfc6979_ecdsa.py"
|
"fastecdsa/tests/test_rfc6979_ecdsa.py"
|
||||||
];
|
];
|
||||||
|
|
||||||
# skip tests for now, they fail with
|
# skip tests for now, they fail with
|
||||||
|
|
Loading…
Reference in a new issue