Skip to content

Commit 864841c

Browse files
committed
Update setuptools and tox configuration
We also run integration and unit tests into single Zuul job to save resources. Partially closes https://issues.redhat.com/browse/RDO-422 Change-Id: Iafb2e26895d19bc65a722c6cd5e7bc903791fb11
1 parent 8dafcbc commit 864841c

File tree

10 files changed

+90
-155
lines changed

10 files changed

+90
-155
lines changed

.zuul.yaml

+19-43
Original file line numberDiff line numberDiff line change
@@ -4,51 +4,31 @@
44
parent: tox
55
abstract: true
66
pre-run: playbooks/base.yaml
7+
nodeset:
8+
nodes:
9+
- name: cloud-centos-9-stream
10+
label: cloud-centos-9-stream
711

812
- job:
9-
name: distroinfo-base-py2
13+
name: distroinfo-py39
1014
parent: distroinfo-base
11-
abstract: true
12-
nodeset: centos-latest-pod
15+
description: distroinfo tests on py3.9
16+
vars:
17+
tox_envlist: py39
1318

1419
- job:
15-
name: distroinfo-base-py3
20+
name: distroinfo-py312
1621
parent: distroinfo-base
17-
abstract: true
22+
description: distroinfo tests on py3.12
1823
nodeset: fedora-latest-pod
19-
20-
- job:
21-
name: distroinfo-py2-centos
22-
parent: distroinfo-base-py2
23-
description: distroinfo tests on python2
24-
vars:
25-
tox_envlist: py2-unit
26-
27-
- job:
28-
name: distroinfo-py3-fedora
29-
parent: distroinfo-base-py3
30-
description: distroinfo tests on python3
3124
vars:
32-
tox_envlist: py3-unit
33-
34-
- job:
35-
name: distroinfo-py2-integration
36-
parent: distroinfo-base-py2
37-
description: distroinfo integration tests with rdoinfo
38-
vars:
39-
tox_envlist: py2-integration
40-
41-
- job:
42-
name: distroinfo-py3-integration
43-
parent: distroinfo-base-py3
44-
description: distroinfo integration tests with rdoinfo
45-
vars:
46-
tox_envlist: py3-integration
25+
tox_envlist: py312
4726

4827
- job:
4928
name: distroinfo-codestyle
50-
parent: distroinfo-base-py2
29+
parent: distroinfo-base
5130
description: distroinfo code style checks
31+
nodeset: fedora-latest-pod
5232
vars:
5333
tox_envlist: pycodestyle
5434

@@ -59,8 +39,8 @@
5939
run: playbooks/dlrn-master.yaml
6040
nodeset:
6141
nodes:
62-
- name: rdo-centos-8-stream
63-
label: rdo-centos-8-stream
42+
- name: cloud-centos-9-stream
43+
label: cloud-centos-9-stream
6444

6545
required-projects:
6646
- DLRN
@@ -69,18 +49,14 @@
6949
name: distroinfo
7050
check:
7151
jobs:
72-
- distroinfo-py2-centos
73-
- distroinfo-py3-fedora
74-
- distroinfo-py2-integration
75-
- distroinfo-py3-integration
52+
- distroinfo-py39
53+
- distroinfo-py312
7654
- distroinfo-codestyle
7755
- distroinfo-dlrn-master
7856
gate:
7957
jobs:
80-
- distroinfo-py2-centos
81-
- distroinfo-py3-fedora
82-
- distroinfo-py2-integration
83-
- distroinfo-py3-integration
58+
- distroinfo-py39
59+
- distroinfo-py312
8460
- distroinfo-codestyle
8561
- distroinfo-dlrn-master
8662
release:

playbooks/dlrn-master.yaml

+9-6
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,26 @@
66
- name: Prepare virtualenv to test DLRN master
77
shell:
88
cmd: |
9-
tox -e py36 --notest
9+
tox -e py39 --notest
1010
chdir: "{{ working_dir }}/DLRN"
11+
1112
- name: Inject distroinfo into DLRN master virtualenv
1213
shell:
1314
cmd: |
14-
. ../DLRN/.tox/py36/bin/activate
15-
python setup.py install
15+
. ../DLRN/.tox/py39/bin/activate
16+
pip install .
1617
chdir: "{{ working_dir }}/distroinfo"
18+
1719
- name: Run DLRN master tests with distroinfo
1820
shell:
1921
cmd: |
2022
export TAG=""
21-
export TARGET="centos8"
23+
export TARGET="centos9"
2224
export ZUUL_BRANCH="rpm-master"
23-
export PYTHON_VERSION=py36
24-
timeout --signal=SIGKILL 3600 ./scripts/run_tests.sh http://review.rdoproject.org/r/rdoinfo.git ${TARGET} https://trunk.rdoproject.org/centos8/
25+
export PYTHON_VERSION=py39
26+
timeout --signal=SIGKILL 3600 ./scripts/run_tests.sh http://review.rdoproject.org/r/rdoinfo.git ${TARGET} https://trunk.rdoproject.org/centos9/
2527
chdir: "{{ working_dir }}/DLRN"
28+
2629
- name: Copy DLRN logs for collection
2730
shell:
2831
cmd: |

requirements.txt

-4
This file was deleted.

setup.cfg

+26-12
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,49 @@
11
[metadata]
22
name = distroinfo
33
summary = python module for parsing, validating and querying distribution/packaging metadata stored in human readable and reviewable text/YAML files
4-
description-file = README.rst
4+
description_file = README.rst
55
long_description_content_type = text/x-rst
66
license = Apache Software License
77
classifiers =
88
Programming Language :: Python
9-
Programming Language :: Python :: 2
10-
Programming Language :: Python :: 2.7
119
Programming Language :: Python :: 3
12-
Programming Language :: Python :: 3.6
13-
Programming Language :: Python :: 3.7
10+
Programming Language :: Python :: 3.9
11+
Programming Language :: Python :: 3.10
12+
Programming Language :: Python :: 3.11
13+
Programming Language :: Python :: 3.12
14+
Programming Language :: Python :: 3.13
15+
Programming Language :: Python :: 3.14
1416
Environment :: OpenStack
1517
Intended Audience :: Information Technology
1618
Intended Audience :: System Administrators
1719
License :: OSI Approved :: Apache Software License
1820
Operating System :: POSIX :: Linux
1921
author = Jakub Ruzicka
20-
author-email = [email protected]
21-
home-page = https://github.com/softwarefactory-project/distroinfo
22+
author_email = [email protected]
23+
home_page = https://github.com/softwarefactory-project/distroinfo
2224
keywords =
2325

24-
[global]
25-
setup-hooks = pbr.hooks.setup_hook
26+
[options]
27+
python_requires = >=3.9
28+
packages = find:
29+
include_package_data = true
30+
install_requires =
31+
pbr>=6.0.0
32+
PyYAML
33+
requests
34+
six
35+
36+
[options.extras_require]
37+
tests =
38+
pytest
39+
pycodestyle
2640

2741
[files]
2842
packages =
2943
distroinfo
3044

31-
[aliases]
32-
test = pytest
33-
3445
[pycodestyle]
46+
# E123, E125 skipped as they are invalid PEP-8.
47+
ignore = E123,E125
48+
show-source = True
3549
exclude = build,lib,.tox,third,*.egg,docs,packages,.eggs

setup.py

+1-20
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,6 @@
11
#!/usr/bin/env python
2-
3-
import re
42
import setuptools
5-
import sys
6-
7-
# In python < 2.7.4, a lazy loading of package `pbr` will break
8-
# setuptools if some other modules registered functions in `atexit`.
9-
# solution from: http://bugs.python.org/issue15881#msg170215
10-
try:
11-
import multiprocessing # noqa
12-
except ImportError:
13-
pass
14-
15-
16-
# Only require pytest_runner for setup when testing. This uses the
17-
# recommendation from
18-
# https://pypi.org/project/pytest-runner/#conditional-requirement
19-
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
20-
pytest_runner = ['pytest-runner'] if needs_pytest else []
213

224
setuptools.setup(
23-
setup_requires=['pbr'] + pytest_runner,
24-
tests_require=['pytest'],
5+
setup_requires=['pbr>=2.0.0'],
256
pbr=True)

test-requirements.txt

-2
This file was deleted.

tests/assets/info/rdoinfo/deps.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ package-configs:
1414
rdo-dependency:
1515
# This is the conf for dependencies in rdo-common not being entirely managed
1616
# in review.r.o but using cbs-tags for automatic tagging
17-
distgit: http://review.rdoproject.org/r/deps/%(project)s.git
17+
distgit: https://review.rdoproject.org/r/deps/%(project)s.git
1818
patches:
19-
master-distgit: http://review.rdoproject.org/r/deps/%(project)s.git
19+
master-distgit: https://review.rdoproject.org/r/deps/%(project)s.git
2020
review-patches:
2121
review-origin:
2222
tags:

tests/test_common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def assert_rdoinfo_deps(info):
7575
'conf': 'rdo-dependency',
7676
'upstream': 'https://github.com/sphinx-doc/sphinx',
7777
'patches': None,
78-
'distgit': 'http://review.rdoproject.org/r/deps/python-sphinx.git'
78+
'distgit': 'https://review.rdoproject.org/r/deps/python-sphinx.git'
7979
}
8080
assert_dict_contains(pkg, expected=sphinx)
8181
assert 'tags' in pkg

tests/unit/test_query.py

+25-25
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ def test_attr_diff_base():
1818
pkg['upstream'] = 'https://opendev.org/openstack/foo'
1919

2020
diff = query.attr_diff(info, info2, 'upstream')
21-
assert(len(diff) == 1)
22-
assert(diff[0][0] == 'openstack-nova')
23-
assert(diff[0][1] == 'https://opendev.org/openstack/foo')
21+
assert (len(diff) == 1)
22+
assert (diff[0][0] == 'openstack-nova')
23+
assert (diff[0][1] == 'https://opendev.org/openstack/foo')
2424

2525

2626
def test_attr_diff_nochanges():
@@ -29,7 +29,7 @@ def test_attr_diff_nochanges():
2929
info = di.get_info()
3030
info2 = copy.deepcopy(info)
3131
diff = query.attr_diff(info, info2, 'upstream')
32-
assert(len(diff) == 0)
32+
assert (len(diff) == 0)
3333

3434

3535
def test_attr_diff_nosuchattr():
@@ -43,7 +43,7 @@ def test_attr_diff_nosuchattr():
4343
pkg['upstream'] = 'https://opendev.org/openstack/foo'
4444

4545
diff = query.attr_diff(info, info2, 'fooattr')
46-
assert(len(diff) == 0)
46+
assert (len(diff) == 0)
4747

4848

4949
def test_attr_diff_newpkg():
@@ -59,9 +59,9 @@ def test_attr_diff_newpkg():
5959
info2['packages'].append(newpkg)
6060

6161
diff = query.attr_diff(info, info2, 'master-distgit')
62-
assert(len(diff) == 1)
63-
assert(diff[0][0] == 'openstack-newproject')
64-
assert(diff[0][1] == 'https://github.com/rdo-packages/new-distgit')
62+
assert (len(diff) == 1)
63+
assert (diff[0][0] == 'openstack-newproject')
64+
assert (diff[0][1] == 'https://github.com/rdo-packages/new-distgit')
6565

6666

6767
def test_attr_diff_2_diffs():
@@ -77,7 +77,7 @@ def test_attr_diff_2_diffs():
7777
pkg['upstream'] = 'https://opendev.org/openstack/foo-cinder'
7878

7979
diff = query.attr_diff(info, info2, 'upstream')
80-
assert(len(diff) == 2)
80+
assert (len(diff) == 2)
8181

8282

8383
def test_find_element_ok():
@@ -87,8 +87,8 @@ def test_find_element_ok():
8787
finding = query.find_element(info, 'queens',
8888
info_key='releases')
8989

90-
assert(finding)
91-
assert(finding == info['releases'][1])
90+
assert (finding)
91+
assert (finding == info['releases'][1])
9292

9393

9494
def test_find_element_not_found():
@@ -97,7 +97,7 @@ def test_find_element_not_found():
9797
info = di.get_info()
9898
finding = query.find_element(info, 'aabb',
9999
info_key='releases')
100-
assert(not finding)
100+
assert (not finding)
101101

102102

103103
@unittest.skipIf(six.PY2, "Test fails randomly in python2")
@@ -108,8 +108,8 @@ def test_find_element_in_sub_dict_list():
108108
finding = query.find_element(info, 'cloud7-openstack-rocky-testing',
109109
info_key='releases')
110110

111-
assert(finding)
112-
assert(finding == info['releases'][0])
111+
assert (finding)
112+
assert (finding == info['releases'][0])
113113

114114

115115
def test_single_filter_pkgs_found():
@@ -121,9 +121,9 @@ def test_single_filter_pkgs_found():
121121
rexen = {"project": "keystonemiddleware"}
122122
finding = query.filter_pkgs(pkgs, rexen)
123123

124-
assert(isinstance(finding, list))
125-
assert(len(finding) == 1)
126-
assert("keystonemiddleware" in finding[0]["name"])
124+
assert (isinstance(finding, list))
125+
assert (len(finding) == 1)
126+
assert ("keystonemiddleware" in finding[0]["name"])
127127

128128

129129
def test_multiple_filter_found():
@@ -136,8 +136,8 @@ def test_multiple_filter_found():
136136
finding = query.filter_pkgs(pkgs, rexen)
137137

138138
# expected number of foung pkgs is 2
139-
assert(isinstance(finding, list))
140-
assert(len(finding) == 2)
139+
assert (isinstance(finding, list))
140+
assert (len(finding) == 2)
141141

142142

143143
def test_filter_pkgs_not_found():
@@ -150,8 +150,8 @@ def test_filter_pkgs_not_found():
150150
finding = query.filter_pkgs(pkgs, rexen)
151151

152152
# no package should be found
153-
assert(isinstance(finding, list))
154-
assert(len(finding) == 0)
153+
assert (isinstance(finding, list))
154+
assert (len(finding) == 0)
155155

156156

157157
def test_exclusion_filter_found():
@@ -163,7 +163,7 @@ def test_exclusion_filter_found():
163163

164164
finding = query.filter_pkgs(pkgs, rexen)
165165

166-
assert(finding)
167-
assert(isinstance(finding, list))
168-
assert(len(finding) == 1)
169-
assert("newton" not in finding[0]["tags"])
166+
assert (finding)
167+
assert (isinstance(finding, list))
168+
assert (len(finding) == 1)
169+
assert ("newton" not in finding[0]["tags"])

0 commit comments

Comments
 (0)