python3Packages.moto: update disabled tests, drop xdist

Dropping pytest-xdist due to reproducible hangs at the end of the test
run.

+15 -3
+15 -3
pkgs/development/python-modules/moto/default.nix
··· 71 72 checkInputs = [ 73 freezegun 74 - pytest-xdist 75 pytestCheckHook 76 sure 77 ]; 78 79 pytestFlagsArray = [ 80 - "--numprocesses $NIX_BUILD_CORES" 81 - 82 # Disable tests that try to access the network 83 "--deselect=tests/test_cloudformation/test_cloudformation_custom_resources.py::test_create_custom_lambda_resource__verify_cfnresponse_failed" 84 "--deselect=tests/test_cloudformation/test_server.py::test_cloudformation_server_get" ··· 92 "--deselect=tests/test_sqs/test_sqs_integration.py::test_invoke_function_from_sqs_exception" 93 "--deselect=tests/test_stepfunctions/test_stepfunctions.py::test_state_machine_creation_fails_with_invalid_names" 94 "--deselect=tests/test_stepfunctions/test_stepfunctions.py::test_state_machine_list_executions_with_pagination" 95 96 # json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 97 "--deselect=tests/test_cloudformation/test_cloudformation_stack_integration.py::test_lambda_function" 98 ]; 99 100 disabledTestPaths = [
··· 71 72 checkInputs = [ 73 freezegun 74 pytestCheckHook 75 sure 76 ]; 77 78 pytestFlagsArray = [ 79 # Disable tests that try to access the network 80 "--deselect=tests/test_cloudformation/test_cloudformation_custom_resources.py::test_create_custom_lambda_resource__verify_cfnresponse_failed" 81 "--deselect=tests/test_cloudformation/test_server.py::test_cloudformation_server_get" ··· 89 "--deselect=tests/test_sqs/test_sqs_integration.py::test_invoke_function_from_sqs_exception" 90 "--deselect=tests/test_stepfunctions/test_stepfunctions.py::test_state_machine_creation_fails_with_invalid_names" 91 "--deselect=tests/test_stepfunctions/test_stepfunctions.py::test_state_machine_list_executions_with_pagination" 92 + "--deselect=tests/test_iotdata/test_iotdata.py::test_update" 93 + "--deselect=tests/test_iotdata/test_iotdata.py::test_basic" 94 + "--deselect=tests/test_iotdata/test_iotdata.py::test_delete_field_from_device_shadow" 95 + "--deselect=tests/test_iotdata/test_iotdata.py::test_publish" 96 + "--deselect=tests/test_s3/test_server.py::test_s3_server_bucket_versioning" 97 98 # json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 99 "--deselect=tests/test_cloudformation/test_cloudformation_stack_integration.py::test_lambda_function" 100 + 101 + # AssertionError: CloudWatch log event was not found. 102 + "--deselect=tests/test_logs/test_integration.py::test_subscription_filter_applies_to_new_streams" 103 + 104 + # KeyError: 'global' 105 + "--deselect=tests/test_iotdata/test_server.py::test_iotdata_list" 106 + "--deselect=tests/test_iotdata/test_server.py::test_publish" 107 + 108 + # Blocks test execution 109 + "--deselect=tests/test_utilities/test_threaded_server.py::TestThreadedMotoServer::test_load_data_from_inmemory_client" 110 ]; 111 112 disabledTestPaths = [