From 00c3c149ecc13bcfe4e1df0b31b9d2b19a88b2db Mon Sep 17 00:00:00 2001 From: Bryce Larson Date: Tue, 28 Apr 2020 11:25:47 -0600 Subject: [PATCH] add fedora-32 --- .ci/kitchen-fedora32-py3 | 16 ++++++++++++++++ .ci/kitchen-fedora32-py3-pytest | 19 +++++++++++++++++++ .ci/kitchen-ubuntu2004-py3-pytest | 19 +++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 .ci/kitchen-fedora32-py3 create mode 100644 .ci/kitchen-fedora32-py3-pytest create mode 100644 .ci/kitchen-ubuntu2004-py3-pytest diff --git a/.ci/kitchen-fedora32-py3 b/.ci/kitchen-fedora32-py3 new file mode 100644 index 00000000000..91104f18fc8 --- /dev/null +++ b/.ci/kitchen-fedora32-py3 @@ -0,0 +1,16 @@ +@Library('salt@master-1.7') _ + +runTestSuite( + concurrent_builds: 1, + distro_name: 'fedora', + distro_version: '32', + env: env, + golden_images_branch: 'master', + jenkins_slave_label: 'kitchen-slave', + nox_env_name: 'runtests-zeromq', + nox_passthrough_opts: '--ssh-tests', + python_version: 'py3', + testrun_timeout: 6, + use_spot_instances: true) + +// vim: ft=groovy diff --git a/.ci/kitchen-fedora32-py3-pytest b/.ci/kitchen-fedora32-py3-pytest new file mode 100644 index 00000000000..0b43e46be47 --- /dev/null +++ b/.ci/kitchen-fedora32-py3-pytest @@ -0,0 +1,19 @@ +@Library('salt@master-1.7') _ + +runTestSuite( + concurrent_builds: 2, + distro_name: 'fedora', + distro_version: '32', + env: env, + golden_images_branch: 'master', + jenkins_slave_label: 'kitchen-slave', + nox_env_name: 'pytest-zeromq', + nox_passthrough_opts: '--ssh-tests', + python_version: 'py3', + //splits: ['unit', 'integration', 'multimaster'], + testrun_timeout: 6, + use_spot_instances: true, + //fast_slow_staged_testrun: true +) + +// vim: ft=groovy diff --git a/.ci/kitchen-ubuntu2004-py3-pytest b/.ci/kitchen-ubuntu2004-py3-pytest new file mode 100644 index 00000000000..11c6022248a --- /dev/null +++ b/.ci/kitchen-ubuntu2004-py3-pytest @@ -0,0 +1,19 @@ +@Library('salt@master-1.7') _ + +runTestSuite( + concurrent_builds: 2, + distro_name: 'ubuntu', + distro_version: '2004', + env: env, + golden_images_branch: 'master', + jenkins_slave_label: 'kitchen-slave', + nox_env_name: 'pytest-zeromq', + nox_passthrough_opts: '--ssh-tests', + python_version: 'py3', + //splits: ['unit', 'integration', 'multimaster'], + testrun_timeout: 6, + use_spot_instances: true, + //fast_slow_staged_testrun: true +) + +// vim: ft=groovy