Skip to main content

ogoron run

Purpose

Use ogoron run when you want to execute tests without generating a heal-focused report.

Subcommands

  • ogoron run tests — run generated unit tests (by default: the latest batch)
  • ogoron run smoke — run fast technical smoke checks from the Ogoron UI workspace
  • ogoron run ui-tests — run generated UI tests from the Ogoron UI workspace

Common options

Common flags for ogoron run tests:

  • --all — run all generated batches (not only the latest timestamp)
  • --profile / --stack / --sut-preset — control test execution settings

Common flags for ogoron run ui-tests:

  • --target — run a single generated UI test file or subdirectory inside .ogoron/tests/tests/ui/generated

Examples

# Run the latest generated unit test batch
ogoron run tests

# Run all generated batches
ogoron run tests --all

# Run fast UI workspace smoke checks
ogoron run smoke

# Run all generated UI tests
ogoron run ui-tests

# Run one generated UI test file
ogoron run ui-tests --target test_new_organization_is_routed_into_trial_setup.py

Notes

  • Use ogoron run tests --help to see execution flags (profile/stack/SUT preset).
  • ogoron run smoke and ogoron run ui-tests use the Python UI workspace under .ogoron/tests.
  • Prepare that workspace first with ogoron prepare ui-workspace.