bruno_run_collection
Execute API test collections or specific folders to validate endpoints, generate test reports, and manage environment variables for comprehensive API testing workflows.
Instructions
Run an entire Bruno collection or a specific folder within it
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| collectionPath | Yes | Path to the Bruno collection | |
| environment | No | Name or path of the environment to use (optional) | |
| folderPath | No | Specific folder within collection to run (optional) | |
| envVariables | No | Environment variables as key-value pairs (optional) | |
| reporterJson | No | Path to write JSON report (optional) | |
| reporterJunit | No | Path to write JUnit XML report for CI/CD integration (optional) | |
| reporterHtml | No | Path to write HTML report (optional) | |
| dryRun | No | Validate all requests without executing HTTP calls (optional) | 
Input Schema (JSON Schema)
{
  "properties": {
    "collectionPath": {
      "description": "Path to the Bruno collection",
      "type": "string"
    },
    "dryRun": {
      "description": "Validate all requests without executing HTTP calls (optional)",
      "type": "boolean"
    },
    "envVariables": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "Environment variables as key-value pairs (optional)",
      "type": "object"
    },
    "environment": {
      "description": "Name or path of the environment to use (optional)",
      "type": "string"
    },
    "folderPath": {
      "description": "Specific folder within collection to run (optional)",
      "type": "string"
    },
    "reporterHtml": {
      "description": "Path to write HTML report (optional)",
      "type": "string"
    },
    "reporterJson": {
      "description": "Path to write JSON report (optional)",
      "type": "string"
    },
    "reporterJunit": {
      "description": "Path to write JUnit XML report for CI/CD integration (optional)",
      "type": "string"
    }
  },
  "required": [
    "collectionPath"
  ],
  "type": "object"
}