forked from python-bugzilla/python-bugzilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·203 lines (160 loc) · 5.56 KB
/
setup.py
File metadata and controls
executable file
·203 lines (160 loc) · 5.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#!/usr/bin/env python
from __future__ import print_function
import glob
import os
import sys
import unittest
from distutils.core import Command
from setuptools import setup
def get_version():
f = open("bugzilla/apiversion.py")
for line in f:
if line.startswith('version = '):
return eval(line.split('=')[-1])
class TestCommand(Command):
user_options = [
("ro-functional", None,
"Run readonly functional tests against actual bugzilla instances. "
"This will be very slow."),
("rw-functional", None,
"Run read/write functional tests against actual bugzilla instances. "
"As of now this only runs against partner-bugzilla.redhat.com, "
"which requires an RH bugzilla account with cached cookies. "
"This will also be very slow."),
("only=", None,
"Run only tests whose name contains the passed string"),
("redhat-url=", None,
"Redhat bugzilla URL to use for ro/rw_functional tests"),
]
def initialize_options(self):
self.ro_functional = False
self.rw_functional = False
self.only = None
self.redhat_url = None
def finalize_options(self):
pass
def run(self):
os.environ["__BUGZILLA_UNITTEST"] = "1"
try:
import coverage
usecov = int(coverage.__version__.split(".")[0]) >= 3
except:
usecov = False
if usecov:
cov = coverage.coverage(omit=[
"/*/tests/*", "/usr/*", "*dev-env*", "*.tox/*"])
cov.erase()
cov.start()
testfiles = []
for t in glob.glob(os.path.join(os.getcwd(), 'tests', '*.py')):
if t.endswith("__init__.py"):
continue
base = os.path.basename(t)
if (base == "ro_functional.py" and not self.ro_functional):
continue
if (base == "rw_functional.py" and not self.rw_functional):
continue
testfiles.append('.'.join(['tests', os.path.splitext(base)[0]]))
if hasattr(unittest, "installHandler"):
try:
unittest.installHandler()
except:
print("installHandler hack failed")
import tests as testsmodule
testsmodule.REDHAT_URL = self.redhat_url
tests = unittest.TestLoader().loadTestsFromNames(testfiles)
if self.only:
newtests = []
for suite1 in tests:
for suite2 in suite1:
for testcase in suite2:
if self.only in str(testcase):
newtests.append(testcase)
if not newtests:
print("--only didn't find any tests")
sys.exit(1)
tests = unittest.TestSuite(newtests)
print("Running only:")
for test in newtests:
print("%s" % test)
print()
t = unittest.TextTestRunner(verbosity=1)
result = t.run(tests)
if usecov:
cov.stop()
cov.save()
err = int(bool(len(result.failures) > 0 or
len(result.errors) > 0))
if not err and usecov:
cov.report(show_missing=False)
sys.exit(err)
class PylintCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def _run(self):
files = ["bugzilla/", "bin-bugzilla", "examples/*.py", "tests/*.py"]
output_format = sys.stdout.isatty() and "colorized" or "text"
cmd = "pylint "
cmd += "--output-format=%s " % output_format
cmd += " ".join(files)
os.system(cmd + " --rcfile tests/pylint.cfg")
print("running pep8")
cmd = "pep8 "
cmd += " ".join(files)
os.system(cmd + " --config tests/pep8.cfg --exclude oldclasses.py")
def run(self):
os.link("bin/bugzilla", "bin-bugzilla")
try:
self._run()
finally:
try:
os.unlink("bin-bugzilla")
except:
pass
class RPMCommand(Command):
description = "Build src and binary rpms."
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
"""
Run sdist, then 'rpmbuild' the tar.gz
"""
os.system("cp python-bugzilla.spec /tmp")
try:
os.system("rm -rf python-bugzilla-%s" % get_version())
self.run_command('sdist')
os.system('rpmbuild -ta --clean dist/python-bugzilla-%s.tar.gz' %
get_version())
finally:
os.system("mv /tmp/python-bugzilla.spec .")
def _parse_requirements(fname):
ret = []
for line in open(fname).readlines():
if not line or line.startswith("#"):
continue
ret.append(line)
return ret
setup(name='python-bugzilla',
version=get_version(),
description='Bugzilla XMLRPC access module',
author='Cole Robinson',
license="GPLv2",
url='https://github.com/python-bugzilla/python-bugzilla',
packages = ['bugzilla'],
scripts=['bin/bugzilla'],
data_files=[('share/man/man1', ['bugzilla.1'])],
install_requires=_parse_requirements("requirements.txt"),
tests_require=_parse_requirements("test-requirements.txt"),
cmdclass={
"pylint" : PylintCommand,
"rpm" : RPMCommand,
"test" : TestCommand,
},
)