python3Packages.dataclasses-json: Disable failing test
The package doesn't pin a mypy version and is incompatible with ours.
This commit is contained in:
parent
3c2e3c5686
commit
336c8f2a4c
1 changed files with 6 additions and 0 deletions
|
@ -30,6 +30,12 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# mypy_main(None, text_io, text_io, [__file__], clean_exit=True)
|
||||
# TypeError: main() takes at most 4 arguments (5 given)
|
||||
"test_type_hints"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "dataclasses_json" ];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue