tripleo-ci/zuul.d
Zuul 94738809b1 Merge "Add fedora28 standalone non-voting job definition" 2018-10-20 01:58:42 +00:00
..
README.rst Enable featureset override for tempest_{format, extra_override} 2018-10-14 19:29:09 +05:30
base.yaml Move environment_type to the new base jobs 2018-10-11 10:07:00 +00:00
build-image.yaml Add full path to required projects 2018-08-21 15:47:51 -04:00
layout.yaml Remove non-voting job from gate 2018-09-29 05:46:46 -06:00
multinode-jobs.yaml Add fedora28 standalone non-voting job definition 2018-10-19 08:44:02 +00:00
nodesets.yaml Add fedora28 standalone non-voting job definition 2018-10-19 08:44:02 +00:00
standalone-jobs.yaml Add fedora28 standalone non-voting job definition 2018-10-19 08:44:02 +00:00
undercloud-jobs.yaml Merge "Revert "Make containerized undercloud upgrade non voting until we get Stein tag"" 2018-10-19 18:55:38 +00:00

README.rst

Override config

featureset override

Take advantage of zuul job config to override featureset settings like tempest tests that should run. The following settings from the featureset config can be overriden:

  • `run_tempest`: To run tempest or not (true|false).
  • `tempest_whitelist`: List of tests you want to be executed.
  • `test_black_regex`: Set of tempest tests to skip.
  • `tempest_format`: Installing tempest from venv, packages or containers
  • `tempest_extra_config`: A dict values in order to override the tempest.conf
  • `tempest_plugins`: List of tempest plugins needs to be installed

Example:

- job:
    name: tripleo-ci-centos-7-scenario001-multinode-oooq-container
    parent: tripleo-ci-multinode
    ...
    vars:
      featureset_override:
        run_tempest: true
        tempest_whitelist:
          - 'tempest.scenario.test_volume_boot_pattern.TestVolumeBootPattern.test_volume_boot_pattern'
        tempest_black_regex: 'tempest.api.network|tempest.api.compute'
        tempest_format: 'containers'
        tempest_extra_config: {'telemetry.alarm_granularity': '60'}
        tempest_plugins:
          - 'python-keystone-tests-tempest'
          - 'python-cinder-tests-tempest'