salt/cicd/jenkins/pr-centosstream-9-x86_64-py3-cloud-pytest
Pedro Algarvio 2dbdea9065 Stop running tests on Jenkins, with the exception of the cloud tests
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
2023-03-07 13:25:52 -07:00

18 lines
537 B
Groovy

@Library('salt@master-1.11') _
runTestSuite(
concurrent_builds: 0, // Don't cancel builds still running. Wait until they end.
distro_name: 'centosstream',
distro_version: '9',
distro_arch: 'x86-64',
env: env,
jenkins_slave_label: 'kitchen-slave',
kitchen_platforms_file: '/var/jenkins/workspace/cloud-platforms.yml',
nox_env_name: 'pytest-cloud',
nox_passthrough_opts: '',
python_version: 'py3',
testrun_timeout: 6,
force_run_full: true,
use_spot_instances: true)
// vim: ft=groovy