tripleo-ci/zuul.d
Sorin Sbarnea b6611fd03a Fixed flake8 and broken gate
Flake8 went broken recently, adopts correct calling method to avoid
regression and fixes broken rules.

Also removes openstack-tox-pep8 from gate which was a guaranteed
failure when triggered as pep8 was removed.

Change-Id: Iba03d3051952f461bb16299a6d32475b2be43041
2020-01-27 19:21:48 +00:00
..
README.rst Add tempest_workers to featureset_overrides 2018-12-10 11:48:59 +00:00
ansible.yaml Create tripleo-ansible-role-job template for ansible projects. 2018-11-27 17:22:59 +01:00
base.yaml Assure requirements.txt is not ignored 2020-01-13 17:32:06 +00:00
build-containers.yaml Added train jobs 2019-10-24 11:56:39 +02:00
build-image.yaml Add tripleo-build-images-base job & reparent existing build jobs 2019-07-15 08:50:38 +00:00
deprecated-jobs.yaml Remove pike multinode jobs 2019-08-29 19:43:56 +05:30
layout.yaml Fixed flake8 and broken gate 2020-01-27 19:21:48 +00:00
multinode-jobs.yaml Replace ostempest job in favor of plain standalone 2019-12-16 11:50:58 +00:00
nodesets.yaml Nuke f28 job/nodeset definitions 2019-08-28 16:14:35 -03:00
periodic.yaml Make periodic job run with check parameters 2019-08-28 15:13:17 +03:00
standalone-jobs.yaml Merge "Adds a scenario 10 to run tests with OVN provider" 2020-01-25 03:45:58 +00:00
undercloud-jobs.yaml Make minion job voting 2019-12-05 12:12:52 -07: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
  • `standalone_environment_files`: List of environment files to be overriden by the featureset configuration on standalone deployment. The environment file should exist in tripleo-heat-templates repo.
  • `test_white_regex`: Regex to be used by tempest
  • `tempest_workers`: Numbers of parallel workers to run

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_workers: 1
        tempest_plugins:
          - 'python-keystone-tests-tempest'
          - 'python-cinder-tests-tempest'
        standalone_environment_files:
          - 'environments/low-memory-usage.yaml'
          - 'ci/environments/scenario003-standalone.yaml'