Stop checking installation on ubuntu-xenial nodes

It doesn't have py3.6 and we do not want to use third-party repos

Change-Id: I93bc22784b332bd039c6d6041d89802d7669d4e1
This commit is contained in:
Andrey Kurilin 2020-03-03 13:45:55 +02:00
parent 4687d413bc
commit 74a2f78709
2 changed files with 0 additions and 15 deletions

View File

@ -5,11 +5,6 @@
run: tests/ci/playbooks/rally-install/run.yaml
timeout: 1800
- job:
name: rally-install-ubuntu-xenial
parent: rally-install-base
nodeset: ubuntu-xenial
- job:
name: rally-install-ubuntu-bionic
parent: rally-install-base
@ -57,7 +52,6 @@
- rally-tox-functional-py38
- rally-tox-self
- rally-database-migration
- rally-install-ubuntu-xenial
- rally-install-ubuntu-bionic
- rally-install-centos-7
- rally-install-centos-8
@ -72,7 +66,6 @@
- rally-tox-functional
- rally-tox-self
- rally-database-migration
- rally-install-ubuntu-xenial
- rally-install-ubuntu-bionic
- rally-install-centos-7
- rally-install-centos-8

View File

@ -13,16 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools
# In python < 2.7.4, a lazy loading of package `pbr` will break
# setuptools if some other modules registered functions in `atexit`.
# solution from: http://bugs.python.org/issue15881#msg170215
try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup(
setup_requires=['pbr>=1.8'],