tempest_list_skipped – Parse skipped tests from tempest

Synopsis

Parse filtered tests to be skipped by tempest

Parameters

yaml_file (True, str, None)

Path to a yaml file containing the skipped tests in openstack-tempest-skiplist format

jobs (False, list, None)

List of the jobs to be used in the filter. Passing the jobs it will filter only tests that have the specified jobs in the jobs list.

release (False, str, master)

Release name to be used in the filter. Default is set to ‘master’

Examples

- name: Get list of skipped tests
  tempest_list_skipped:
    yaml_file: /tmp/skipped.yaml
    job: edpm
    release: master

Return Values

skipped_tests (Always, list, [‘tempest.api.volume.test_volumes_snapshots.VolumesSnapshotTestJSON’])

List of tests filtered

Status

Authors

  • Arx Cruz (@arxcruz)