Mock Version: 1.2.18 ENTER ['do'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/python-coverage.spec'], user='mockbuild'uid=1001logger=shell=FalseprintOutput=FalsechrootPath='/var/lib/mock/epel-7-x86_64-mockbuilder-5516/root'timeout=0gid=135env={'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOSTNAME': 'mock', 'HOME': '/builddir', 'PS1': ' \\s-\\v\\$ ', 'TERM': 'vt100', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'SHELL': '/bin/bash', 'LANG': 'en_US.UTF-8'}) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/python-coverage.spec'] with env {'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOSTNAME': 'mock', 'HOME': '/builddir', 'PS1': ' \\s-\\v\\$ ', 'TERM': 'vt100', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'SHELL': '/bin/bash', 'LANG': 'en_US.UTF-8'} and shell False sh: /usr/bin/python: No such file or directory sh: /usr/bin/python: No such file or directory warning: bogus date in %changelog: Wed May 9 2010 Toshio Kuratomi - 3.3.1-2 warning: bogus date in %changelog: Wed May 9 2010 Toshio Kuratomi - 3.3.1-1 warning: bogus date in %changelog: Wed Aug 10 2009 Tom "spot" Callaway - 3.0.1-1 warning: Could not canonicalize hostname: copr-builder-823957292.novalocal Building target platforms: x86_64 Building for target x86_64 Wrote: /builddir/build/SRPMS/python-coverage-3.6-0.5.b3.el7.centos.src.rpm Child return code was: 0 ENTER ['do'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/python-coverage.spec'], user='mockbuild'uid=1001logger=shell=FalseprintOutput=FalsechrootPath='/var/lib/mock/epel-7-x86_64-mockbuilder-5516/root'timeout=0private_network=Truegid=135env={'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOSTNAME': 'mock', 'HOME': '/builddir', 'PS1': ' \\s-\\v\\$ ', 'TERM': 'vt100', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'SHELL': '/bin/bash', 'LANG': 'en_US.UTF-8'}) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/python-coverage.spec'] with env {'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOSTNAME': 'mock', 'HOME': '/builddir', 'PS1': ' \\s-\\v\\$ ', 'TERM': 'vt100', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'SHELL': '/bin/bash', 'LANG': 'en_US.UTF-8'} and shell False warning: bogus date in %changelog: Wed May 9 2010 Toshio Kuratomi - 3.3.1-2 warning: bogus date in %changelog: Wed May 9 2010 Toshio Kuratomi - 3.3.1-1 warning: bogus date in %changelog: Wed Aug 10 2009 Tom "spot" Callaway - 3.0.1-1 Building target platforms: x86_64 Building for target x86_64 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.Bohkkd + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf coverage-3.6b3 + /usr/bin/gzip -dc /builddir/build/SOURCES/coverage-3.6b3.tar.gz + /usr/bin/tar -xf - + STATUS=0 + '[' 0 -ne 0 ']' + cd coverage-3.6b3 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + find . -type f -exec chmod 0644 '{}' ';' + sed -i 's/\r//g' README.txt + rm -rf /builddir/build/BUILD/python3-python-coverage-3.6-0.5.b3.el7.centos + cp -a . /builddir/build/BUILD/python3-python-coverage-3.6-0.5.b3.el7.centos + pushd /builddir/build/BUILD/python3-python-coverage-3.6-0.5.b3.el7.centos ~/build/BUILD/python3-python-coverage-3.6-0.5.b3.el7.centos ~/build/BUILD/coverage-3.6b3 + 2to3 --nobackups --write . RefactoringTool: Skipping implicit fixer: buffer RefactoringTool: Skipping implicit fixer: idioms RefactoringTool: Skipping implicit fixer: set_literal RefactoringTool: Skipping implicit fixer: ws_comma RefactoringTool: Refactored ./igor.py RefactoringTool: Refactored ./setup.py RefactoringTool: No changes to ./coverage/__init__.py RefactoringTool: No changes to ./coverage/annotate.py RefactoringTool: Refactored ./coverage/backward.py RefactoringTool: No changes to ./coverage/bytecode.py RefactoringTool: Refactored ./coverage/cmdline.py --- ./igor.py (original) +++ ./igor.py (refactored) @@ -160,18 +160,18 @@ for n, line in enumerate(open(fname, "rb")): if crlf: if "\r" in line: - print("%s@%d: CR found" % (fname, n+1)) + print(("%s@%d: CR found" % (fname, n+1))) return if trail_white: line = line[:-1] if not crlf: line = line.rstrip('\r') if line.rstrip() != line: - print("%s@%d: trailing whitespace found" % (fname, n+1)) + print(("%s@%d: trailing whitespace found" % (fname, n+1))) return if line is not None and not line.strip(): - print("%s: final blank line" % (fname,)) + print(("%s: final blank line" % (fname,))) def check_files(root, patterns, **kwargs): """Check a number of files for whitespace abuse.""" @@ -211,16 +211,16 @@ pypy_version = sys.pypy_version_info # pylint: disable=E1101 version += " (pypy %s)" % ".".join([str(v) for v in pypy_version]) - print('=== %s %s %s (%s) ===' % (impl, version, label, sys.executable)) + print(('=== %s %s %s (%s) ===' % (impl, version, label, sys.executable))) def do_help(): """List the available commands""" - items = globals().items() + items = list(globals().items()) items.sort() for name, value in items: if name.startswith('do_'): - print("%-20s%s" % (name[3:], value.__doc__)) + print(("%-20s%s" % (name[3:], value.__doc__))) def main(args): @@ -234,7 +234,7 @@ verb = args.pop(0) handler = globals().get('do_'+verb) if handler is None: - print("*** No handler for %r" % verb) + print(("*** No handler for %r" % verb)) return 1 argspec = inspect.getargspec(handler) if argspec[1]: --- ./setup.py (original) +++ ./setup.py (refactored) @@ -190,7 +190,7 @@ msg = "Couldn't install with extension module, trying without it..." exc = sys.exc_info()[1] exc_msg = "%s: %s" % (exc.__class__.__name__, exc.cause) - print("**\n** %s\n** %s\n**" % (msg, exc_msg)) + print(("**\n** %s\n** %s\n**" % (msg, exc_msg))) del setup_args['ext_modules'] setup(**setup_args) --- ./coverage/backward.py (original) +++ ./coverage/backward.py (refactored) @@ -42,20 +42,20 @@ # Pythons 2 and 3 differ on where to get StringIO try: - from cStringIO import StringIO + from io import StringIO BytesIO = StringIO except ImportError: from io import StringIO, BytesIO # What's a string called? try: - string_class = basestring + string_class = str except NameError: string_class = str # Where do pickles come from? try: - import cPickle as pickle + import pickle as pickle except ImportError: import pickle @@ -69,11 +69,11 @@ if "iteritems" in dir({}): def iitems(d): """Produce the items from dict `d`.""" - return d.iteritems() + return iter(d.items()) else: def iitems(d): """Produce the items from dict `d`.""" - return d.items() + return list(d.items()) # Exec is a statement in Py2, a function in Py3 if sys.version_info >= (3, 0): --- ./coverage/cmdline.py (original) +++ ./coverage/cmdline.py (refactored) @@ -469,13 +469,13 @@ print(error) print("Use 'coverage help' for help.") elif parser: - print(parser.format_help().strip()) + print((parser.format_help().strip())) else: help_msg = HELP_TOPICS.get(topic, '').strip() if help_msg: - print(help_msg % self.covpkg.__dict__) + print((help_msg % self.covpkg.__dict__)) else: - print("Don't know topic %r" % topic) + print(("Don't know topic %r" % topic)) def do_help(self, options, args, parser): """Deal RefactoringTool: No changes to ./coverage/codeunit.py RefactoringTool: Refactored ./coverage/collector.py RefactoringTool: Refactored ./coverage/config.py RefactoringTool: Refactored ./coverage/control.py RefactoringTool: No changes to ./coverage/data.py RefactoringTool: No changes to ./coverage/execfile.py RefactoringTool: No changes to ./coverage/files.py RefactoringTool: No changes to ./coverage/html.py RefactoringTool: Refactored ./coverage/misc.py RefactoringTool: Refactored ./coverage/parser.py with help requests. @@ -581,21 +581,21 @@ if isinstance(info, list): prefix = "%15s:" % label for e in info: - print("%16s %s" % (prefix, e)) + print(("%16s %s" % (prefix, e))) prefix = "" else: - print("%15s: %s" % (label, info)) + print(("%15s: %s" % (label, info))) elif info == 'data': print("-- data ---------------------------------------") self.coverage.load() - print("path: %s" % self.coverage.data.filename) - print("has_arcs: %r" % self.coverage.data.has_arcs()) + print(("path: %s" % self.coverage.data.filename)) + print(("has_arcs: %r" % self.coverage.data.has_arcs())) summary = self.coverage.data.summary(fullpath=True) if summary: filenames = sorted(summary.keys()) - print("\n%d files:" % len(filenames)) + print(("\n%d files:" % len(filenames))) for f in filenames: - print("%s: %d lines" % (f, summary[f])) + print(("%s: %d lines" % (f, summary[f]))) else: print("No data collected") else: --- ./coverage/collector.py (original) +++ ./coverage/collector.py (refactored) @@ -297,7 +297,7 @@ if stats: print("\nCoverage.py tracer stats:") for k in sorted(stats.keys()): - print("%16s: %s" % (k, stats[k])) + print(("%16s: %s" % (k, stats[k]))) threading.settrace(None) def resume(self): @@ -316,7 +316,7 @@ # If we were measuring branches, then we have to re-build the dict # to show line data. line_data = {} - for f, arcs in self.data.items(): + for f, arcs in list(self.data.items()): line_data[f] = ldf = {} for l1, _ in list(arcs.keys()): if l1: --- ./coverage/config.py (original) +++ ./coverage/config.py (refactored) @@ -7,7 +7,7 @@ try: import configparser # pylint: disable=F0401 except ImportError: - import ConfigParser as configparser + import configparser as configparser class HandyConfigParser(configparser.RawConfigParser): @@ -69,7 +69,7 @@ """ value_list = self.get(section, option) - return list(filter(None, value_list.split('\n'))) + return list([_f for _f in value_list.split('\n') if _f]) # The default line exclusion regexes --- ./coverage/control.py (original) +++ ./coverage/control.py (refactored) @@ -273,7 +273,7 @@ def _should_trace(self, filename, frame): # pylint: disable=E0102 """A logging decorator around the real _should_trace function.""" ret = self._real_should_trace(filename, frame) - print("should_trace: %r -> %r" % (filename, ret)) + print(("should_trace: %r -> %r" % (filename, ret))) return ret def _warn(self, msg): @@ -467,7 +467,7 @@ aliases = None if self.config.paths: aliases = PathAliases(self.file_locator) - for paths in self.config.paths.values(): + for paths in list(self.config.paths.values()): result = paths[0] for pattern in paths[1:]: aliases.add(pattern, result) --- ./coverage/misc.py (original) +++ ./coverage/misc.py (refactored) @@ -119,7 +119,7 @@ for e in v: self.update(e) elif isinstance(v, dict): - keys = v.keys() + keys = list(v.keys()) for k in sorted(keys): self.update(k) self.update(v[k]) --- ./coverage/parser.py (original) +++ ./coverage/parser.py (refactored) RefactoringTool: Refactored ./coverage/phystokens.py RefactoringTool: No changes to ./coverage/report.py RefactoringTool: Refactored ./coverage/results.py RefactoringTool: No changes to ./coverage/summary.py RefactoringTool: No changes to ./coverage/templite.py RefactoringTool: Refactored ./coverage/xmlreport.py RefactoringTool: Refactored ./coverage/fullcoverage/encodings.py RefactoringTool: No changes to ./test/backtest.py RefactoringTool: No changes to ./test/backunittest.py RefactoringTool: Refactored ./test/coveragetest.py RefactoringTool: No changes to ./test/osinfo.py RefactoringTool: Refactored ./test/test_api.py RefactoringTool: Refactored ./test/test_arcs.py RefactoringTool: Refactored ./test/test_cmdline.py @@ -109,10 +109,10 @@ tokgen = tokenize.generate_tokens(StringIO(self.text).readline) for toktype, ttext, (slineno, _), (elineno, _), ltext in tokgen: if self.show_tokens: # pragma: not covered - print("%10s %5s %-20r %r" % ( + print(("%10s %5s %-20r %r" % ( tokenize.tok_name.get(toktype, toktype), nice_pair((slineno, elineno)), ttext, ltext - )) + ))) if toktype == token.INDENT: indent += 1 elif toktype == token.DEDENT: --- ./coverage/phystokens.py (original) +++ ./coverage/phystokens.py (refactored) @@ -122,7 +122,7 @@ cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") # Do this so the detect_encode code we copied will work. - readline = iter(source.splitlines()).next + readline = iter(source.splitlines()).__next__ def _get_normal_name(orig_enc): """Imitates get_normal_name in tokenizer.c.""" --- ./coverage/results.py (original) +++ ./coverage/results.py (refactored) @@ -116,7 +116,7 @@ def total_branches(self): """How many total branches are there?""" exit_counts = self.parser.exit_counts() - return sum([count for count in exit_counts.values() if count > 1]) + return sum([count for count in list(exit_counts.values()) if count > 1]) def missing_branch_arcs(self): """Return arcs that weren't executed from branch lines. --- ./coverage/xmlreport.py (original) +++ ./coverage/xmlreport.py (refactored) @@ -133,8 +133,8 @@ class_hits = class_lines - len(analysis.missing) if self.arcs: - class_branches = sum([t for t,k in branch_stats.values()]) - missing_branches = sum([t-k for t,k in branch_stats.values()]) + class_branches = sum([t for t,k in list(branch_stats.values())]) + missing_branches = sum([t-k for t,k in list(branch_stats.values())]) class_br_hits = class_branches - missing_branches else: class_branches = 0.0 --- ./coverage/fullcoverage/encodings.py (original) +++ ./coverage/fullcoverage/encodings.py (refactored) @@ -51,7 +51,7 @@ # happen last, since all of the symbols in this module will become None # at that exact moment, including "sys". -parentdir = max(filter(__file__.startswith, sys.path), key=len) +parentdir = max(list(filter(__file__.startswith, sys.path)), key=len) sys.path.remove(parentdir) del sys.modules['encodings'] import encodings --- ./test/coveragetest.py (original) +++ ./test/coveragetest.py (refactored) @@ -6,8 +6,8 @@ from coverage.backward import sorted, StringIO # pylint: disable=W0622 from coverage.backward import to_bytes from coverage.control import _TEST_NAME_FILE -from backtest import run_command -from backunittest import TestCase +from .backtest import run_command +from .backunittest import TestCase class Tee(object): """A file-like that writes to all the file-likes it has.""" @@ -136,7 +136,7 @@ def undo_environ(self): """Undo all the changes made by `set_environ`.""" - for name, value in self.environ_undos.items(): + for name, value in list(self.environ_undos.items()): if value is None: del os.environ[name] else: --- ./test/test_api.py (original) +++ ./test/test_api.py (refactored) @@ -6,7 +6,7 @@ from coverage.backward import StringIO sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class SingletonApiTest(CoverageTest): --- ./test/test_arcs.py (original) +++ ./test/test_arcs.py (refactored) @@ -3,7 +3,7 @@ import os, sys sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class SimpleArcTest(CoverageTest): --- ./test/test_cmdline.py (original) +++ ./test/test_cmdline.py (refactored) RefactoringTool: Refactored ./test/test_codeunit.py RefactoringTool: Refactored ./test/test_config.py RefactoringTool: Refactored ./test/test_coverage.py RefactoringTool: Refactored ./test/test_data.py RefactoringTool: Refactored ./test/test_execfile.py RefactoringTool: Refactored ./test/test_farm.py @@ -7,7 +7,7 @@ from coverage.misc import ExceptionDuringRun sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest, OK, ERR +from .coveragetest import CoverageTest, OK, ERR class CmdLineTest(CoverageTest): --- ./test/test_codeunit.py (original) +++ ./test/test_codeunit.py (refactored) @@ -6,7 +6,7 @@ from coverage.files import FileLocator sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest # pylint: disable=F0401 # Unable to import 'aa' (No module named aa) --- ./test/test_config.py (original) +++ ./test/test_config.py (refactored) @@ -6,7 +6,7 @@ from coverage.misc import CoverageException sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class ConfigTest(CoverageTest): --- ./test/test_coverage.py (original) +++ ./test/test_coverage.py (refactored) @@ -7,7 +7,7 @@ from coverage.misc import CoverageException sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class TestCoverageTest(CoverageTest): --- ./test/test_data.py (original) +++ ./test/test_data.py (refactored) @@ -7,7 +7,7 @@ from coverage.files import PathAliases sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest DATA_1 = { 'a.py': {1:None, 2:None}, 'b.py': {3:None} } @@ -100,7 +100,7 @@ fdata.close() lines = data['lines'] - self.assertSameElements(lines.keys(), MEASURED_FILES_1) + self.assertSameElements(list(lines.keys()), MEASURED_FILES_1) self.assertSameElements(lines['a.py'], A_PY_LINES_1) self.assertSameElements(lines['b.py'], B_PY_LINES_1) # If not measuring branches, there's no arcs entry. @@ -118,7 +118,7 @@ finally: fdata.close() - self.assertSameElements(data['lines'].keys(), []) + self.assertSameElements(list(data['lines'].keys()), []) arcs = data['arcs'] self.assertSameElements(arcs['x.py'], X_PY_ARCS_3) self.assertSameElements(arcs['y.py'], Y_PY_ARCS_3) --- ./test/test_execfile.py (original) +++ ./test/test_execfile.py (refactored) @@ -6,7 +6,7 @@ from coverage.misc import NoSource sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest here = os.path.dirname(__file__) --- ./test/test_farm.py (original) +++ ./test/test_farm.py (refactored) @@ -4,7 +4,7 @@ from nose.plugins.skip import SkipTest sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from backtest import run_command, execfile # pylint: disable=W0622 +from .backtest import run_command, execfile # pylint: disable=W0622 from coverage.control import _TEST_NAME_FILE @@ -88,7 +88,7 @@ old_mods = dict(sys.modules) try: - execfile(self.runpy, glo) + exec(compile(open(self.runpy).read(), self.runpy, 'exec'), glo) finally: self.cd(cwd) # Remove any new modules imported during the test run. This lets us @@ -164,7 +164,7 @@ if not cmd: continue retcode, output = run_command(cmd) - print(output.rstrip()) + print((output.rstrip())) if outfile: fout.write(output) if retcode: @@ -264,7 +264,7 @@ right = self._scrub(right, scrubs) if left != right: text_diff.append(f) - print("".join(list(difflib.Differ().compare(left, right)))) + print(("".join(list(difflib.Differ().compare(RefactoringTool: Refactored ./test/test_files.py RefactoringTool: Refactored ./test/test_html.py RefactoringTool: Refactored ./test/test_misc.py RefactoringTool: Refactored ./test/test_oddball.py RefactoringTool: Refactored ./test/test_parser.py RefactoringTool: Refactored ./test/test_phystokens.py RefactoringTool: Refactored ./test/test_process.py RefactoringTool: Refactored ./test/test_results.py RefactoringTool: Refactored ./test/test_summary.py RefactoringTool: Refactored ./test/test_templite.py left, right))))) assert not text_diff, "Files differ: %s" % text_diff if not left_extra: @@ -360,7 +360,7 @@ for test in test_farm(clean_only=True): test[0].run_fully() else: - print(main.__doc__) + print((main.__doc__)) # So that we can run just one farm run.py at a time. if __name__ == '__main__': --- ./test/test_files.py (original) +++ ./test/test_files.py (refactored) @@ -8,7 +8,7 @@ from coverage.misc import CoverageException sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class FileLocatorTest(CoverageTest): --- ./test/test_html.py (original) +++ ./test/test_html.py (refactored) @@ -6,7 +6,7 @@ from coverage.misc import NotPython, NoSource sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class HtmlTestHelpers(CoverageTest): """Methods that help with HTML tests.""" --- ./test/test_misc.py (original) +++ ./test/test_misc.py (refactored) @@ -5,7 +5,7 @@ from coverage.misc import Hasher, file_be_gone from coverage import __version__, __url__ sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class HasherTest(CoverageTest): """Test our wrapper of md5 hashing.""" --- ./test/test_oddball.py (original) +++ ./test/test_oddball.py (refactored) @@ -4,8 +4,8 @@ import coverage sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest -import osinfo +from .coveragetest import CoverageTest +from . import osinfo class ThreadingTest(CoverageTest): """Tests of the threading support.""" @@ -306,7 +306,7 @@ cov._harvest_data() # private! sshhh... lines = cov.data.line_data() clean_lines = {} - for f, llist in lines.items(): + for f, llist in list(lines.items()): if f == __file__: # ignore this file. continue --- ./test/test_parser.py (original) +++ ./test/test_parser.py (refactored) @@ -3,7 +3,7 @@ import os, sys, textwrap sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest from coverage.parser import CodeParser --- ./test/test_phystokens.py (original) +++ ./test/test_phystokens.py (refactored) @@ -3,7 +3,7 @@ import os, re, sys sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest from coverage.phystokens import source_token_lines --- ./test/test_process.py (original) +++ ./test/test_process.py (refactored) @@ -5,7 +5,7 @@ import coverage sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest here = os.path.dirname(__file__) --- ./test/test_results.py (original) +++ ./test/test_results.py (refactored) @@ -5,7 +5,7 @@ from coverage.results import Numbers sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class NumbersTest(CoverageTest): --- ./test/test_summary.py (original) +++ ./test/test_summary.py (refactored) @@ -6,7 +6,7 @@ from coverage.backward import StringIO sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class SummaryTest(CoverageTest): """Tests of the text summary reporting for coverage.py.""" --- ./test/test_templite.py (original) +++ ./test/test_templite.py (refactored) @@ -14,7 +14,7 @@ """ def __init__(self, **attrs): - RefactoringTool: Refactored ./test/test_testing.py RefactoringTool: Refactored ./test/test_xml.py RefactoringTool: No changes to ./test/try_execfile.py RefactoringTool: No changes to ./test/farm/annotate/src/white.py RefactoringTool: Refactored ./test/farm/html/run_unicode.py RefactoringTool: No changes to ./test/farm/html/src/bom.py RefactoringTool: No changes to ./test/farm/html/src/partial.py RefactoringTool: Refactored ./test/farm/run/src/showtrace.py RefactoringTool: Refactored ./test/modules/runmod1.py RefactoringTool: Refactored ./test/modules/pkg1/__main__.py RefactoringTool: Refactored ./test/modules/pkg1/runmod2.py RefactoringTool: Refactored ./test/modules/pkg1/sub/__main__.py RefactoringTool: Refactored ./test/modules/pkg1/sub/runmod3.py RefactoringTool: Files that were modified: RefactoringTool: ./igor.py RefactoringTool: ./setup.py RefactoringTool: ./coverage/__init__.py RefactoringTool: ./coverage/annotate.py RefactoringTool: ./coverage/backward.py RefactoringTool: ./coverage/bytecode.py RefactoringTool: ./coverage/cmdline.py RefactoringTool: ./coverage/codeunit.py RefactoringTool: ./coverage/collector.py RefactoringTool: ./coverage/config.py RefactoringTool: ./coverage/control.py RefactoringTool: ./coverage/data.py RefactoringTool: ./coverage/execfile.py RefactoringTool: ./coverage/files.py RefactoringTool: ./coverage/html.py RefactoringTool: ./coverage/misc.py RefactoringTool: ./coverage/parser.py RefactoringTool: ./coverage/phystokens.py RefactoringTool: ./coverage/report.py RefactoringTool: ./coverage/results.py RefactoringTool: ./coverage/summary.py RefactoringTool: ./coverage/templite.py RefactoringTool: ./coverage/xmlreport.py RefactoringTool: ./coverage/fullcoverage/encodings.py RefactoringTool: ./test/backtest.py RefactoringTool: ./test/backunittest.py RefactoringTool: ./test/coveragetest.py RefactoringTool: ./test/osinfo.py RefactoringTool: ./test/test_api.py RefactoringTool: ./test/test_arcs.py RefactoringTool: ./test/test_cmdline.py RefactoringTool: ./test/test_codeunit.py RefactoringTool: ./test/test_config.py RefactoringTool: ./test/test_coverage.py RefactoringTool: ./test/test_data.py RefactoringTool: ./test/test_execfile.py RefactoringTool: ./test/test_farm.py RefactoringTool: ./test/test_files.py RefactoringTool: ./test/test_html.py RefactoringTool: ./test/test_misc.py RefactoringTool: ./test/test_oddball.py RefactoringTool: ./test/test_parser.py RefactoringTool: ./test/test_phystokens.py RefactoringTool: ./test/test_process.py RefactoringTool: ./test/test_results.py RefactoringTool: ./test/test_summary.py RefactoringTool: ./test/test_templite.py RefactoringTool: ./test/test_testing.py RefactoringTool: ./test/test_xml.py RefactoringTool: ./test/try_execfile.py RefactoringTool: ./test/farm/annotate/src/white.py RefactoringTool: ./test/farm/html/run_unicode.py RefactoringTool: ./test/farm/html/src/bom.py RefactoringTool: ./test/farm/html/src/partial.py RefactoringTool: ./test/farm/run/src/showtrace.py RefactoringTool: ./test/modules/runmod1.py RefactoringTool: ./test/modules/pkg1/__main__.py RefactoringTool: ./test/modules/pkg1/runmod2.py RefactoringTool: ./test/modules/pkg1/sub/__main__.py RefactoringTool: ./test/modules/pkg1/sub/runmod3.py for n, v in attrs.items(): + for n, v in list(attrs.items()): setattr(self, n, v) --- ./test/test_testing.py (original) +++ ./test/test_testing.py (refactored) @@ -4,8 +4,8 @@ import os, sys sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k from coverage.backward import to_bytes, rpartition -from backunittest import TestCase -from coveragetest import CoverageTest +from .backunittest import TestCase +from .coveragetest import CoverageTest from coverage.backward import set # pylint: disable=W0622 --- ./test/test_xml.py (original) +++ ./test/test_xml.py (refactored) @@ -4,7 +4,7 @@ import coverage sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k -from coveragetest import CoverageTest +from .coveragetest import CoverageTest class XmlReportTest(CoverageTest): """Tests of the XML reports from coverage.py.""" --- ./test/farm/html/run_unicode.py (original) +++ ./test/farm/html/run_unicode.py (refactored) @@ -5,9 +5,9 @@ import coverage cov = coverage.coverage() cov.start() - import unicode # pragma: nested + import str # pragma: nested cov.stop() # pragma: nested - cov.html_report(unicode, directory="../html_unicode") + cov.html_report(str, directory="../html_unicode") runfunc(html_it, rundir="src") --- ./test/farm/run/src/showtrace.py (original) +++ ./test/farm/run/src/showtrace.py (refactored) @@ -11,7 +11,7 @@ else: # Get the name of the tracer class. Py3k has a different way to get it. try: - trace_name = trace_fn.im_class.__name__ + trace_name = trace_fn.__self__.__class__.__name__ except AttributeError: try: trace_name = trace_fn.__self__.__class__.__name__ @@ -20,4 +20,4 @@ # which doesn't have im_class or __self__. trace_name = trace_fn.__class__.__name__ -print("%s %s" % (sys.argv[1], trace_name)) +print(("%s %s" % (sys.argv[1], trace_name))) --- ./test/modules/runmod1.py (original) +++ ./test/modules/runmod1.py (refactored) @@ -1,3 +1,3 @@ # Used in the tests for run_python_module import sys -print("runmod1: passed %s" % sys.argv[1]) +print(("runmod1: passed %s" % sys.argv[1])) --- ./test/modules/pkg1/__main__.py (original) +++ ./test/modules/pkg1/__main__.py (refactored) @@ -1,3 +1,3 @@ # Used in the tests for run_python_module import sys -print("pkg1.__main__: passed %s" % sys.argv[1]) +print(("pkg1.__main__: passed %s" % sys.argv[1])) --- ./test/modules/pkg1/runmod2.py (original) +++ ./test/modules/pkg1/runmod2.py (refactored) @@ -1,3 +1,3 @@ # Used in the tests for run_python_module import sys -print("runmod2: passed %s" % sys.argv[1]) +print(("runmod2: passed %s" % sys.argv[1])) --- ./test/modules/pkg1/sub/__main__.py (original) +++ ./test/modules/pkg1/sub/__main__.py (refactored) @@ -1,3 +1,3 @@ # Used in the tests for run_python_module import sys -print("pkg1.sub.__main__: passed %s" % sys.argv[1]) +print(("pkg1.sub.__main__: passed %s" % sys.argv[1])) --- ./test/modules/pkg1/sub/runmod3.py (original) +++ ./test/modules/pkg1/sub/runmod3.py (refactored) @@ -1,3 +1,3 @@ # Used in the tests for run_python_module import sys -print("runmod3: passed %s" % sys.argv[1]) +print(("runmod3: passed %s" % sys.argv[1])) ~/build/BUILD/coverage-3.6b3 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.Dr6nF1 + popd + exit 0 + umask 022 + cd /builddir/build/BUILD + cd coverage-3.6b3 + /usr/bin/python setup.py build running build running build_py creating build creating build/lib.linux-x86_64-2.7 creating build/lib.linux-x86_64-2.7/coverage copying coverage/__main__.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/__init__.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/xmlreport.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/version.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/templite.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/summary.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/results.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/report.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/phystokens.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/parser.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/misc.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/html.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/files.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/execfile.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/data.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/control.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/config.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/collector.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/codeunit.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/cmdline.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/bytecode.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/backward.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/annotate.py -> build/lib.linux-x86_64-2.7/coverage creating build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/style.css -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/pyfile.html -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/keybd_open.png -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/keybd_closed.png -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/jquery.tablesorter.min.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/jquery.isonscreen.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/jquery.hotkeys.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/jquery-1.4.3.min.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/index.html -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/coverage_html.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles running build_ext building 'coverage.tracer' extension creating build/temp.linux-x86_64-2.7 creating build/temp.linux-x86_64-2.7/coverage gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python2.7 -c coverage/tracer.c -o build/temp.linux-x86_64-2.7/coverage/tracer.o gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-2.7/coverage/tracer.o -L/usr/lib64 -lpython2.7 -o build/lib.linux-x86_64-2.7/coverage/tracer.so ~/build/BUILD/python3-python-coverage-3.6-0.5.b3.el7.centos ~/build/BUILD/coverage-3.6b3 + pushd /builddir/build/BUILD/python3-python-coverage-3.6-0.5.b3.el7.centos + /usr/bin/python3 setup.py build running build running build_py creating build creating build/lib.linux-x86_64-3.3 creating build/lib.linux-x86_64-3.3/coverage copying coverage/annotate.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/backward.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/bytecode.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/cmdline.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/codeunit.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/collector.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/config.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/control.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/data.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/execfile.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/files.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/html.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/misc.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/parser.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/phystokens.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/report.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/results.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/summary.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/templite.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/version.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/xmlreport.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/__init__.py -> build/lib.linux-x86_64-3.3/coverage copying coverage/__main__.py -> build/lib.linux-x86_64-3.3/coverage creating build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/coverage_html.js -> build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/index.html -> build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/jquery-1.4.3.min.js -> build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/jquery.hotkeys.js -> build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/jquery.isonscreen.js -> build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/jquery.tablesorter.min.js -> build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/keybd_closed.png -> build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/keybd_open.png -> build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/pyfile.html -> build/lib.linux-x86_64-3.3/coverage/htmlfiles copying coverage/htmlfiles/style.css -> build/lib.linux-x86_64-3.3/coverage/htmlfiles running build_ext building 'coverage.tracer' extension creating build/temp.linux-x86_64-3.3 creating build/temp.linux-x86_64-3.3/coverage gcc -pthread -Wno-unused-result -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python3.3m -c coverage/tracer.c -o build/temp.linux-x86_64-3.3/coverage/tracer.o gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-3.3/coverage/tracer.o -L/usr/lib64 -lpython3.3m -o build/lib.linux-x86_64-3.3/coverage/tracer.cpython-33m.so ~/build/BUILD/coverage-3.6b3 + popd + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.VpeXQR + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64 ++ dirname /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64 + cd coverage-3.6b3 + pushd /builddir/build/BUILD/python3-python-coverage-3.6-0.5.b3.el7.centos ~/build/BUILD/python3-python-coverage-3.6-0.5.b3.el7.centos ~/build/BUILD/coverage-3.6b3 + /usr/bin/python3 setup.py install --skip-build --root /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64 running install running install_lib creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64 creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3 creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/tracer.cpython-33m.so -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/style.css -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/pyfile.html -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/keybd_open.png -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/keybd_closed.png -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/jquery.tablesorter.min.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/jquery.isonscreen.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/jquery.hotkeys.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/jquery-1.4.3.min.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/index.html -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/htmlfiles/coverage_html.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.3/coverage/__main__.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/__init__.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/xmlreport.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/version.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/templite.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/summary.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/results.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/report.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/phystokens.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/parser.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/misc.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/html.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/files.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/execfile.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/data.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/control.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/config.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/collector.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/codeunit.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/cmdline.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/bytecode.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/backward.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage copying build/lib.linux-x86_64-3.3/coverage/annotate.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/__main__.py to __main__.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/__init__.py to __init__.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/xmlreport.py to xmlreport.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/version.py to version.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/templite.py to templite.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/summary.py to summary.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/results.py to results.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/report.py to report.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/phystokens.py to phystokens.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/parser.py to parser.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/misc.py to misc.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/html.py to html.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/files.py to files.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/execfile.py to execfile.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/data.py to data.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/control.py to control.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/config.py to config.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/collector.py to collector.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/codeunit.py to codeunit.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/cmdline.py to cmdline.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/bytecode.py to bytecode.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/backward.py to backward.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/annotate.py to annotate.cpython-33.pyc running install_egg_info running egg_info writing coverage.egg-info/PKG-INFO writing top-level names to coverage.egg-info/top_level.txt writing dependency_links to coverage.egg-info/dependency_links.txt writing entry points to coverage.egg-info/entry_points.txt reading manifest file 'coverage.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no previously-included files matching '*.pyc' found anywhere in distribution writing manifest file 'coverage.egg-info/SOURCES.txt' Copying coverage.egg-info to /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage-3.6b3-py3.3.egg-info running install_scripts Installing coverage-3.3 script to /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/bin Installing coverage script to /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/bin Installing coverage3 script to /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/bin + mv /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64//usr/bin/coverage /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64//usr/bin/python3-coverage + popd ~/build/BUILD/coverage-3.6b3 + /usr/bin/python setup.py install --skip-build --root /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64 running install running install_lib creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7 creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/tracer.so -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage creating /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/coverage_html.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/index.html -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/jquery-1.4.3.min.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/jquery.hotkeys.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/jquery.isonscreen.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/jquery.tablesorter.min.js -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/keybd_closed.png -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/keybd_open.png -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/pyfile.html -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/style.css -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/annotate.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/backward.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/bytecode.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/cmdline.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/codeunit.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/collector.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/config.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/control.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/data.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/execfile.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/files.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/html.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/misc.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/parser.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/phystokens.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/report.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/results.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/summary.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/templite.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/version.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/xmlreport.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/__init__.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/__main__.py -> /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/annotate.py to annotate.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/backward.py to backward.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/bytecode.py to bytecode.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/cmdline.py to cmdline.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/codeunit.py to codeunit.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/collector.py to collector.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/config.py to config.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/control.py to control.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/data.py to data.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/execfile.py to execfile.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/files.py to files.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/html.py to html.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/misc.py to misc.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/parser.py to parser.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/phystokens.py to phystokens.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/report.py to report.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/results.py to results.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/summary.py to summary.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/templite.py to templite.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/version.py to version.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/xmlreport.py to xmlreport.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/__init__.py to __init__.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/__main__.py to __main__.pyc running install_egg_info running egg_info writing coverage.egg-info/PKG-INFO writing top-level names to coverage.egg-info/top_level.txt writing dependency_links to coverage.egg-info/dependency_links.txt writing entry points to coverage.egg-info/entry_points.txt reading manifest file 'coverage.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no previously-included files matching '*.pyc' found anywhere in distribution writing manifest file 'coverage.egg-info/SOURCES.txt' Copying coverage.egg-info to /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage-3.6b3-py2.7.egg-info running install_scripts Installing coverage2 script to /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/bin Installing coverage-2.7 script to /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/bin Installing coverage script to /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/bin + /usr/lib/rpm/find-debuginfo.sh --strict-build-id -m --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 /builddir/build/BUILD/coverage-3.6b3 extracting debug info from /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7/site-packages/coverage/tracer.so extracting debug info from /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3/site-packages/coverage/tracer.cpython-33m.so /usr/lib/rpm/sepdebugcrcfix: Updated 2 CRC32s, 0 CRC32s did match. 91 blocks + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-compress + /usr/lib/rpm/redhat/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/brp-python-bytecompile /usr/bin/python 1 Bytecompiling .py files below /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib/debug/usr/lib64/python3.3 using /usr/bin/python3.3 Bytecompiling .py files below /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib/debug/usr/lib64/python2.7 using /usr/bin/python2.7 Bytecompiling .py files below /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python2.7 using /usr/bin/python2.7 Bytecompiling .py files below /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/lib64/python3.3 using /usr/bin/python3.3 + /usr/lib/rpm/redhat/brp-python-hardlink + /usr/lib/rpm/redhat/brp-java-repack-jars Processing files: python-coverage-3.6-0.5.b3.el7.centos.x86_64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.HriiKM + umask 022 + cd /builddir/build/BUILD + cd coverage-3.6b3 + DOCDIR=/builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/share/doc/python-coverage-3.6 + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/share/doc/python-coverage-3.6 + cp -pr README.txt /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64/usr/share/doc/python-coverage-3.6 + exit 0 Finding Provides: /bin/sh -c "/usr/lib/rpm/find-provides | grep -v -E '(tracer.so)' || /bin/true" Finding Requires(interp): Finding Requires(rpmlib): Finding Requires(verify): Finding Requires(pre): Finding Requires(post): Finding Requires(preun): Finding Requires(postun): Finding Requires(pretrans): Finding Requires(posttrans): Finding Requires: /bin/sh -c "/usr/lib/rpm/find-requires | grep -v -E '(tracer.so)' || /bin/true" Provides: python-coverage = 3.6-0.5.b3.el7.centos python-coverage(x86-64) = 3.6-0.5.b3.el7.centos Requires(rpmlib): rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 Requires: /usr/bin/python libc.so.6()(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.4)(64bit) libpthread.so.0()(64bit) libpython2.7.so.1.0()(64bit) Processing files: python3-coverage-3.6-0.5.b3.el7.centos.x86_64 Finding Provides: /bin/sh -c "/usr/lib/rpm/find-provides | grep -v -E '(tracer.so)' || /bin/true" Finding Requires(interp): Finding Requires(rpmlib): Finding Requires(verify): Finding Requires(pre): Finding Requires(post): Finding Requires(preun): Finding Requires(postun): Finding Requires(pretrans): Finding Requires(posttrans): Finding Requires: /bin/sh -c "/usr/lib/rpm/find-requires | grep -v -E '(tracer.so)' || /bin/true" Provides: python3-coverage = 3.6-0.5.b3.el7.centos python3-coverage(x86-64) = 3.6-0.5.b3.el7.centos tracer.cpython-33m.so()(64bit) Requires(rpmlib): rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 Requires: /usr/bin/python3 libc.so.6()(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.4)(64bit) libpthread.so.0()(64bit) libpython3.3m.so.1.0()(64bit) Processing files: python-coverage-debuginfo-3.6-0.5.b3.el7.centos.x86_64 Provides: python-coverage-debuginfo = 3.6-0.5.b3.el7.centos python-coverage-debuginfo(x86-64) = 3.6-0.5.b3.el7.centos Requires(rpmlib): rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64 warning: Could not canonicalize hostname: copr-builder-823957292.novalocal Wrote: /builddir/build/RPMS/python-coverage-3.6-0.5.b3.el7.centos.x86_64.rpm Wrote: /builddir/build/RPMS/python3-coverage-3.6-0.5.b3.el7.centos.x86_64.rpm Wrote: /builddir/build/RPMS/python-coverage-debuginfo-3.6-0.5.b3.el7.centos.x86_64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.5J4nTQ + umask 022 + cd /builddir/build/BUILD + cd coverage-3.6b3 + /usr/bin/rm -rf /builddir/build/BUILDROOT/python-coverage-3.6-0.5.b3.el7.centos.x86_64 + exit 0 Child return code was: 0