Bulk Export Test Cases
Exporting test cases to a CSV file gives you a copy of your test case metadata to review offline, or a template you can edit and re-import. You can export test cases for a single table, for a test suite, or across your entire platform. For more information about what each column in the file means, see the CSV Field Reference.Bulk Export Test Cases for a Table
To export test cases scoped to a single table:- In the left navigation menu, click Explore, and select the table whose test cases you want to export.
- Navigate to the Data Observability tab.
- In the Data Quality tab, click Test Cases if not selected.

- Click the ⋮ icon and click Export.

- In the export dialog, confirm the CSV format and start the export.

- OpenMetadata generates the file in the background and downloads it once it’s ready.
Bulk Export Test Cases in a Suite
To export test cases scoped to a single test suite:- Navigate to Data Observability > Data Quality.
- Click the Test Suites tab and switch to Bundle Suites.

- Search and select the bundle suite whose test cases you want to export.
- Click the ⋮ icon and click Export.

- Repeat steps 5 to 6 from Bulk Export Test Cases for a Table.
Bulk Export All Test Cases
To export test cases across your entire OpenMetadata instance:- Navigate to Data Observability > Data Quality, and click Test Cases.

- Click the ⋮ icon and select Export.

- Repeat steps 5 to 6 from Bulk Export Test Cases for a Table.
Export Using API
You can also export test cases using the API with the following endpoints:GET /api/v1/dataQuality/testCases/name/{name}/export
GET /api/v1/dataQuality/testCases/name/{name}/exportAsync
Replace {name} with the Fully Qualified Name (FQN) of the table or test suite you’re exporting from, or with * to export every test case in the instance. The exportAsync endpoint runs the export as a background job and is what the UI uses. The export endpoint returns the CSV synchronously.