mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.cryptography: disable problematic test
Depending on the overcommit setting of the host system this test tries to allocate up to 1 TiB of virtual memory.
This commit is contained in:
parent
a9b867c25b
commit
b8e8ef2793
1 changed files with 6 additions and 0 deletions
|
|
@ -71,6 +71,12 @@ buildPythonPackage rec {
|
|||
|
||||
pytestFlags = [ "--disable-pytest-warnings" ];
|
||||
|
||||
disabledTests = [
|
||||
# Tries to allocate 1 TiB with vm.overcommit_memory=1
|
||||
# https://github.com/pyca/cryptography/pull/14782
|
||||
"test_argon2_malloc_failure"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# save compute time by not running benchmarks
|
||||
"tests/bench"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue