1
2
3
4
5
6
7
8
9
10 | ...
stage('NoCloudKVM integration test') {
integration_test_platform('xenial', 'nocloud-kvm')
}
def loop_integration_tests(os_name, platform) {
sh 'python3 -m tests.cloud_tests run --verbose --os-name ${os_name} --platform ${platform} --test modules/apt_configure_sources_list.yaml --test modules/ntp_servers --test modules/set_password_list --test modules/user_groups --deb cloud-init_*_all.deb'
}
|