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 71 72 72 checkInputs = [ 73 73 freezegun 74 - pytest-xdist 75 74 pytestCheckHook 76 75 sure 77 76 ]; 78 77 79 78 pytestFlagsArray = [ 80 - "--numprocesses $NIX_BUILD_CORES" 81 - 82 79 # Disable tests that try to access the network 83 80 "--deselect=tests/test_cloudformation/test_cloudformation_custom_resources.py::test_create_custom_lambda_resource__verify_cfnresponse_failed" 84 81 "--deselect=tests/test_cloudformation/test_server.py::test_cloudformation_server_get" ··· 92 89 "--deselect=tests/test_sqs/test_sqs_integration.py::test_invoke_function_from_sqs_exception" 93 90 "--deselect=tests/test_stepfunctions/test_stepfunctions.py::test_state_machine_creation_fails_with_invalid_names" 94 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" 95 97 96 98 # json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 97 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" 98 110 ]; 99 111 100 112 disabledTestPaths = [