diff --git a/src/schemas/json/partial-cibuildwheel.json b/src/schemas/json/partial-cibuildwheel.json index 0f573177a7e..06c0078228b 100644 --- a/src/schemas/json/partial-cibuildwheel.json +++ b/src/schemas/json/partial-cibuildwheel.json @@ -538,6 +538,37 @@ ], "title": "CIBW_TEST_ENVIRONMENT" }, + "test-runtime": { + "description": "Additional configuration for the test runner", + "oneOf": [ + { + "type": "string", + "pattern": "^$" + }, + { + "type": "object", + "additionalProperties": false + }, + { + "type": "string", + "pattern": "args:" + }, + { + "type": "object", + "additionalProperties": false, + "required": ["args"], + "properties": { + "args": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + ], + "title": "CIBW_TEST_RUNTIME" + }, "overrides": { "type": "array", "description": "An overrides array", @@ -605,6 +636,9 @@ }, "test-environment": { "$ref": "#/$defs/inherit" + }, + "test-runtime": { + "$ref": "#/$defs/inherit" } } }, @@ -715,6 +749,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } } @@ -843,6 +880,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -903,6 +943,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -976,6 +1019,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -1036,6 +1082,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -1096,6 +1145,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -1156,6 +1208,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } } diff --git a/src/schemas/json/pnpm-workspace.json b/src/schemas/json/pnpm-workspace.json index ba92f64dccd..8f3533c4468 100644 --- a/src/schemas/json/pnpm-workspace.json +++ b/src/schemas/json/pnpm-workspace.json @@ -807,7 +807,7 @@ ] }, "trustPolicyExclude": { - "description": "Exclude specific packages from trust policy checks.", + "description": "You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement.", "type": "array", "uniqueItems": true, "items": {