python3Packages.promise: disable failing test

Changed files
+5
pkgs
development
python-modules
promise
+5
pkgs/development/python-modules/promise/default.nix
···
pytestCheckHook
];
disabledTestPaths = [ "tests/test_benchmark.py" ];
pythonImportsCheck = [ "promise" ];
···
pytestCheckHook
];
+
disabledTests = [
+
# Failed: async def functions are not natively supported
+
"test_issue_9_safe"
+
];
+
disabledTestPaths = [ "tests/test_benchmark.py" ];
pythonImportsCheck = [ "promise" ];