python313Packages.construct-typing: disable faling tests on Python 3.13 (#373030)
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
pythonAtLeast,
|
||||
construct,
|
||||
typing-extensions,
|
||||
arrow,
|
||||
@@ -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}";
|
||||
|
||||
Reference in New Issue
Block a user