CI/CD
CircleCI Integration with Test Management by Testsigma
Integrate CircleCI with Test Management by Testsigma and automate your test runs and generate test reports.
Integrate CircleCI with Test Management by Testsigma to automate test executions and generate test reports through CI/CD pipelines. This article discusses integrating CircleCI with Test Management by Testsigma.
Prerequisites
Before you begin, ensure:
- You have a Project in Test Management by Testsigma and Test Runs are available.
- You have an API token from Test Management by Testsigma.
- You have a CircleCI account.
Set Environment Variables in CircleCI
Section titled “Set Environment Variables in CircleCI”-
Navigate to your project in CircleCI.
-
Go to Project Settings > Environment Variables.
-
Add a new variable:
- Name:
TESTSIGMA_API_TOKEN - Value: API token from Testsigma
- Name:
Configure the CircleCI Pipeline
Section titled “Configure the CircleCI Pipeline”-
Navigate to your CircleCI repository.
-
Open or create the
.circleci/config.ymlfile in the root directory. -
Add the following code into the
.circleci/config.ymlfile:version: 2.1jobs:build:docker:- image: cimg/openjdk:8.0environment:TESTSIGMA_API_TOKEN: << pipeline.parameters.testsigma_api_token >>steps:# ✅ Step 1: Check out the code- checkout# 🔨 Step 2: Build and test with Maven- run:name: 🔨 Build and Test with Mavencommand: mvn clean package# 📤 Step 3: Upload JUnit results to Testsigma- run:name: 📤 Upload JUnit Results to Testsigmacommand: |echo "Uploading JUnit results to Testsigma..."curl --location 'https://test-management.testsigma.com/api/v1/projects/{Project_ID}/junit-import/test-run/{Run_ID}' \--header "Authorization: Bearer $TESTSIGMA_API_TOKEN" \--form "junit_xml=@target/surefire-reports/TEST-MyTests.xml"workflows:version: 2test_and_upload:jobs:- build:parameters:testsigma_api_token:type: env_var_namedefault: TESTSIGMA_API_TOKEN
Triggering the Pipeline
Section titled “Triggering the Pipeline”-
Commit and push your changes to the repository connected to CircleCI.
-
CircleCI will run the workflow.
-
After completion, the corresponding test run in Test Management by Testsigma will be automatically updated with the test execution results.