Skip to content

Commit 64388c3

Browse files
authored
python312Packages.chex: temporarily disable tests on python 3.13 (#369258)
2 parents 8a91aa2 + 51272eb commit 64388c3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkgs/development/python-modules/chex/default.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
cloudpickle,
1919
dm-tree,
2020
pytestCheckHook,
21+
pythonOlder,
2122
}:
2223

2324
buildPythonPackage rec {
@@ -51,6 +52,11 @@ buildPythonPackage rec {
5152
pytestCheckHook
5253
];
5354

55+
# AttributeError: module 'unittest' has no attribute 'makeSuite'
56+
# https://github.com/google-deepmind/chex/issues/371
57+
# TODO: re-enable at next release
58+
doCheck = pythonOlder "3.13";
59+
5460
meta = {
5561
description = "Library of utilities for helping to write reliable JAX code";
5662
homepage = "https://github.com/deepmind/chex";

0 commit comments

Comments
 (0)