Skip to content

Commit

Permalink
python313Packages.construct-typing: disable faling tests on Python 3.…
Browse files Browse the repository at this point in the history
…13 (#373030)
  • Loading branch information
dotlambda authored Jan 11, 2025
2 parents 55077dd + 66e1128 commit 2cecf0c
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions pkgs/development/python-modules/construct-typing/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
buildPythonPackage,
fetchFromGitHub,
setuptools,
pythonAtLeast,
construct,
typing-extensions,
arrow,
Expand Down Expand Up @@ -46,11 +47,17 @@ buildPythonPackage rec {
ruamel-yaml
];

disabledTests = [
# tests fail with construct>=2.10.70
"test_bitsinteger"
"test_bytesinteger"
];
disabledTests =
[
# tests fail with construct>=2.10.70
"test_bitsinteger"
"test_bytesinteger"
]
++ lib.optionals (pythonAtLeast "3.13") [
# https://github.com/timrid/construct-typing/issues/31
"test_tenum_docstring"
"test_tenum_flags_docstring"
];

meta = {
changelog = "https://github.com/timrid/construct-typing/releases/tag/v${version}";
Expand Down

0 comments on commit 2cecf0c

Please sign in to comment.