kitchen-centos7-py3-cloud-pytest 523 B

1234567891011121314151617
  1. @Library('salt@merge-1.8-golden') _
  2. runTestSuite(
  3. concurrent_builds: 0, // Don't cancel builds still running. Wait until they end.
  4. distro_name: 'centos',
  5. distro_version: '7',
  6. env: env,
  7. golden_images_branch: 'master',
  8. jenkins_slave_label: 'kitchen-slave',
  9. kitchen_platforms_file: '/var/jenkins/workspace/nox-cloud-platforms.yml',
  10. nox_env_name: 'pytest-cloud',
  11. nox_passthrough_opts: '',
  12. python_version: 'py3',
  13. testrun_timeout: 6,
  14. use_spot_instances: true)
  15. // vim: ft=groovy