python39Packages.fastapi: format, disable failing test

This commit is contained in:
Sandro Jäckel 2021-08-27 12:44:49 +02:00 committed by Martin Weinelt
parent 7f7b22835c
commit 99ba0c0479

View File

@ -55,8 +55,18 @@ buildPythonPackage rec {
# ignoring deprecation warnings to avoid test failure from
# tests/test_tutorial/test_testing/test_tutorial001.py
pytestFlagsArray = [ "--ignore=tests/test_default_response_class.py" "-W ignore::DeprecationWarning"];
disabledTests = [ "test_get_custom_response" ];
pytestFlagsArray = [
"--ignore=tests/test_default_response_class.py"
"-W ignore::DeprecationWarning"
];
disabledTests = [
"test_get_custom_response"
# Failed: DID NOT RAISE <class 'starlette.websockets.WebSocketDisconnect'>
"test_websocket_invalid_data"
"test_websocket_no_credentials"
];
meta = with lib; {
homepage = "https://github.com/tiangolo/fastapi";