python3Packages.cbor2: disable failing tests on 32-bit platforms (#115219)
This commit is contained in:
parent
bf8e471eb9
commit
e603b1cec7
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
@ -22,6 +23,12 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# https://github.com/agronholm/cbor2/issues/99
|
||||||
|
disabledTests = lib.optionals stdenv.is32bit [
|
||||||
|
"test_huge_truncated_bytes"
|
||||||
|
"test_huge_truncated_string"
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "cbor2" ];
|
pythonImportsCheck = [ "cbor2" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in New Issue