Skip to main content

Overview

Schedule tests to run automatically using Test Plans for recurring schedules or CI/CD integration for deployment-triggered runs.

Scheduling Options

Test Plans

Define which tests to run and when.

Create a Test Plan

  1. Navigate to Test Plans in sidebar
  2. Click Create Plan
  3. Add tests (by selection, folder, or tag)
  4. Configure schedule
  5. Enable the plan

Schedule Options

FrequencyExampleUse Case
HourlyEvery 2 hoursCritical path monitoring
Daily2:00 AM dailyNightly regression
WeeklyMonday 9:00 AMWeekly full suite
CustomCron expressionComplex schedules
Learn more about Test Plans

CI/CD Integration

Trigger tests from your deployment pipeline.

Integration Methods

API Trigger:
curl -X POST https://api.supatest.ai/v1/runs/trigger \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"planId": "plan_123", "environment": "staging"}'
Supported Platforms:
  • GitHub Actions
  • GitLab CI
  • Jenkins
  • CircleCI
  • Any platform with HTTP/webhook support
Learn more about CI/CD Integration

Choosing Your Approach

ScenarioRecommended
Nightly regressionTest Plan with daily schedule
Post-deploymentCI/CD integration
Continuous monitoringTest Plan with hourly schedule
Release validationCI/CD with specific environment