From f482dc7c8ffc257f2bdb16896c706c1e7b6c9531 Mon Sep 17 00:00:00 2001 From: Charles Short Date: Tue, 31 Aug 2021 11:51:46 -0400 Subject: [PATCH] Add py3.9 gate Add python3.9 gate, tested by running tox locally and in zuul gate. Story: 2009101 Task: 43148 Signed-off-by: Charles Short Change-Id: Iebd62739bb52f471213229263aa01fc206baf216 --- .zuul.yaml | 21 +++++++++++++++++++ bindep.txt | 10 +++++++++ .../k8sapp_rook/requirements.txt | 1 + python-k8sapp-rook/k8sapp_rook/tox.ini | 15 ++++++++++++- 4 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 bindep.txt diff --git a/.zuul.yaml b/.zuul.yaml index 1ae49c5..b1338eb 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -5,6 +5,7 @@ - openstack-tox-linters - k8sapp-rook-ceph-tox-py27 - k8sapp-rook-ceph-tox-py36 + - k8sapp-rook-ceph-tox-py39 - k8sapp-rook-ceph-tox-flake8 - k8sapp-rook-ceph-tox-pylint - k8sapp-rook-ceph-tox-bandit @@ -13,6 +14,7 @@ - openstack-tox-linters - k8sapp-rook-ceph-tox-py27 - k8sapp-rook-ceph-tox-py36 + - k8sapp-rook-ceph-tox-py39 - k8sapp-rook-ceph-tox-flake8 - k8sapp-rook-ceph-tox-pylint - k8sapp-rook-ceph-tox-bandit @@ -54,6 +56,25 @@ tox_envlist: py36 tox_extra_args: -c python-k8sapp-rook/k8sapp_rook/tox.ini +- job: + name: k8sapp-rook-ceph-tox-py39 + parent: tox-py39 + description: | + Run py39 test for k8sapp_rook_ceph + nodeset: debian-bullseye + required-projects: + - starlingx/config + - starlingx/fault + - starlingx/update + - starlingx/utilities + files: + - python-k8sapp-rook/* + vars: + python_version: 3.9 + tox_envlist: py39 + tox_extra_args: -c python-k8sapp-rook/k8sapp_rook/tox.ini + + - job: name: k8sapp-rook-ceph-tox-flake8 parent: tox diff --git a/bindep.txt b/bindep.txt new file mode 100644 index 0000000..3ffe69f --- /dev/null +++ b/bindep.txt @@ -0,0 +1,10 @@ +# This is a cross-platform list tracking distribution packages needed for install and tests; +# see https://docs.openstack.org/infra/bindep/ for additional information. + +libffi-dev [platform:dpkg] +libldap2-dev [platform:dpkg] +libxml2-dev [platform:dpkg] +libxslt1-dev [platform:dpkg] +libsasl2-dev [platform:dpkg] +libffi-devel [platform:rpm] +python3-all-dev [platform:dpkg] diff --git a/python-k8sapp-rook/k8sapp_rook/requirements.txt b/python-k8sapp-rook/k8sapp_rook/requirements.txt index 43f8edc..271c80b 100644 --- a/python-k8sapp-rook/k8sapp_rook/requirements.txt +++ b/python-k8sapp-rook/k8sapp_rook/requirements.txt @@ -1,2 +1,3 @@ pbr>=0.5 PyYAML>=3.10 +pycryptodome diff --git a/python-k8sapp-rook/k8sapp_rook/tox.ini b/python-k8sapp-rook/k8sapp_rook/tox.ini index 2e40409..d49041c 100644 --- a/python-k8sapp-rook/k8sapp_rook/tox.ini +++ b/python-k8sapp-rook/k8sapp_rook/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = flake8,py27,py36,pylint,bandit +envlist = flake8,py27,py36,py39,pylint,bandit minversion = 1.6 # skipsdist = True #,pip-missing-reqs @@ -82,6 +82,19 @@ commands = stestr run {posargs} stestr slowest +[testenv:py39] +basepython = python3.9 +sitepackages = False +install_command = pip install \ + -v -v -v \ + -c{toxinidir}/upper-constraints.txt \ + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/starlingx/root/raw/branch/master/build-tools/requirements/debian/upper-constraints.txt} \ + {opts} {packages} +commands = + {[testenv]commands} + stestr run {posargs} + stestr slowest + [testenv:pep8] # testenv:flake8 clone basepython = {[testenv:flake8]basepython}