Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1977605 Details for
Bug 2225709
asv: FTBFS in Fedora rawhide/f39
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh89 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
build.log
build.log (text/plain), 32.00 KB, created by
Fedora Release Engineering
on 2023-07-25 17:11:58 UTC
(
hide
)
Description:
build.log
Filename:
MIME Type:
Creator:
Fedora Release Engineering
Created:
2023-07-25 17:11:58 UTC
Size:
32.00 KB
patch
obsolete
>env-py3.12 >[100.00%] ························ Installing requirements for virtualenv-py3.12 >[100.00%] ························ Error running /tmp/pytest-of-mockbuild/pytest-0/test_run_import_failure_spawn_0/env/606287e3db2922a1ea431fdbf3655ceb/bin/python -mpip install -v wheel pip>=8 (exit status 1) > STDOUT --------> > Using pip 23.1.2 from /tmp/pytest-of-mockbuild/pytest-0/test_run_import_failure_spawn_0/env/606287e3db2922a1ea431fdbf3655ceb/lib/python3.12/site-packages/pip (python 3.12) > STDERR --------> > ERROR: Could not find a version that satisfies the requirement wheel (from versions: none) > ERROR: No matching distribution found for wheel >[100.00%] ························ Failure creating environment for virtualenv-py3.12 >_____________________ test_run_import_failure[forkserver] ______________________ >capsys = <_pytest.capture.CaptureFixture object at 0xffff97bcfa70> >benchmarks_fixture = (<asv.config.Config object at 0xffff97662300>, <asv.plugins.git.Git object at 0xffff97662420>, [<asv.plugins.virtualenv.Virtualenv object at 0xffff97660a40>], '4d0975abfb2edcf5d697e384595173b37ee3a82a') >launch_method = 'forkserver' > @pytest.mark.parametrize('launch_method', [ > 'spawn', > pytest.param('forkserver', marks=needs_unix_socket_mark) > ]) > def test_run_import_failure(capsys, benchmarks_fixture, launch_method): > conf, repo, envs, commit_hash = benchmarks_fixture > > with open(os.path.join('benchmark', 'unimportable.py'), 'w') as f: > f.write('def track_unimportable(): pass') > >> b = benchmarks.Benchmarks.discover(conf, repo, envs, [commit_hash]) >/builddir/build/BUILD/asv-0.5.1/test/test_runner.py:376: >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/benchmarks.py:140: in discover > benchmarks = cls._disc_benchmarks(conf, repo, environments, commit_hash, check) >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/benchmarks.py:186: in _disc_benchmarks > env.create() >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/environment.py:704: in create > self._setup() >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:148: in _setup > self._install_requirements() >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:159: in _install_requirements > self._run_pip(pip_args, env=env) >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:177: in _run_pip > return self.run_executable('python', ['-mpip'] + list(args), **kwargs) >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >self = <asv.plugins.virtualenv.Virtualenv object at 0xffff97660a40> >executable = 'python', args = ['-mpip', 'install', '-v', 'wheel', 'pip>=8'] >kwargs = {'env': {'ASV': 'true', 'ASV_CONF_DIR': '/tmp/pytest-of-mockbuild/pytest-0/test_run_import_failure_forkse0', 'ASV_ENV_...est-0/test_run_import_failure_forkse0/env/606287e3db2922a1ea431fdbf3655ceb', 'ASV_ENV_NAME': 'virtualenv-py3.12', ...}} >env = {'ASV': 'true', 'ASV_CONF_DIR': '/tmp/pytest-of-mockbuild/pytest-0/test_run_import_failure_forkse0', 'ASV_ENV_DIR': '/...test-0/test_run_import_failure_forkse0/env/606287e3db2922a1ea431fdbf3655ceb', 'ASV_ENV_NAME': 'virtualenv-py3.12', ...} >paths = ['/tmp/pytest-of-mockbuild/pytest-0/test_run_import_failure_forkse0/env/606287e3db2922a1ea431fdbf3655ceb/bin', '/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/bin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', ...] >exe = '/tmp/pytest-of-mockbuild/pytest-0/test_run_import_failure_forkse0/env/606287e3db2922a1ea431fdbf3655ceb/bin/python' > def run_executable(self, executable, args, **kwargs): > """ > Run a given executable (eg. python, pip) in the environment. > """ > env = kwargs.pop("env", os.environ).copy() > env.update(self._global_env_vars) > > # Insert bin dirs to PATH > if "PATH" in env: > paths = env["PATH"].split(os.pathsep) > else: > paths = [] > > if WIN: > subpaths = ['Library\\mingw-w64\\bin', > 'Library\\bin', > 'Library\\usr\\bin', > 'Scripts'] > for sub in subpaths[::-1]: > paths.insert(0, os.path.join(self._path, sub)) > paths.insert(0, self._path) > else: > paths.insert(0, os.path.join(self._path, "bin")) > > # Discard PYTHONPATH, which can easily break the environment > # isolation > if 'ASV_PYTHONPATH' in env: > env['PYTHONPATH'] = env['ASV_PYTHONPATH'] > env.pop('ASV_PYTHONPATH', None) > else: > env.pop('PYTHONPATH', None) > > # When running pip, we need to set PIP_USER to false, as --user (which > # may have been set from a pip config file) is incompatible with > # virtualenvs. > kwargs["env"] = dict(env, > PIP_USER=str("false"), > PATH=str(os.pathsep.join(paths))) > exe = self.find_executable(executable) >> return util.check_output([exe] + args, **kwargs) >E asv.util.ProcessError: Command '/tmp/pytest-of-mockbuild/pytest-0/test_run_import_failure_forkse0/env/606287e3db2922a1ea431fdbf3655ceb/bin/python -mpip install -v wheel pip>=8' returned non-zero exit status 1 >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/environment.py:949: ProcessError >---------------------------- Captured stdout setup ----------------------------- >[100.00%] ························ No `environment_type` specified in asv.conf.json. This will be required in the future. >----------------------------- Captured stdout call ----------------------------- >[100.00%] ························ Discovering benchmarks >[100.00%] ························· Creating virtualenv for virtualenv-py3.12 >[100.00%] ························· Installing requirements for virtualenv-py3.12 >[100.00%] ························· Error running /tmp/pytest-of-mockbuild/pytest-0/test_run_import_failure_forkse0/env/606287e3db2922a1ea431fdbf3655ceb/bin/python -mpip install -v wheel pip>=8 (exit status 1) > STDOUT --------> > Using pip 23.1.2 from /tmp/pytest-of-mockbuild/pytest-0/test_run_import_failure_forkse0/env/606287e3db2922a1ea431fdbf3655ceb/lib/python3.12/site-packages/pip (python 3.12) > STDERR --------> > ERROR: Could not find a version that satisfies the requirement wheel (from versions: none) > ERROR: No matching distribution found for wheel >[100.00%] ························· Failure creating environment for virtualenv-py3.12 >____________________________ test_timeraw_benchmark ____________________________ >benchmarks_fixture = (<asv.config.Config object at 0xffff977e0d70>, <asv.plugins.git.Git object at 0xffff977e1e80>, [<asv.plugins.virtualenv.Virtualenv object at 0xffff977e2c90>], 'bd187084cc3df45642e95f696f8f88f1e2711b4f') > def test_timeraw_benchmark(benchmarks_fixture): > conf, repo, envs, commit_hash = benchmarks_fixture > >> b = benchmarks.Benchmarks.discover(conf, repo, envs, [commit_hash], regex='TimerawSuite') >/builddir/build/BUILD/asv-0.5.1/test/test_runner.py:445: >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/benchmarks.py:140: in discover > benchmarks = cls._disc_benchmarks(conf, repo, environments, commit_hash, check) >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/benchmarks.py:186: in _disc_benchmarks > env.create() >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/environment.py:704: in create > self._setup() >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:148: in _setup > self._install_requirements() >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:159: in _install_requirements > self._run_pip(pip_args, env=env) >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:177: in _run_pip > return self.run_executable('python', ['-mpip'] + list(args), **kwargs) >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >self = <asv.plugins.virtualenv.Virtualenv object at 0xffff977e2c90> >executable = 'python', args = ['-mpip', 'install', '-v', 'wheel', 'pip>=8'] >kwargs = {'env': {'ASV': 'true', 'ASV_CONF_DIR': '/tmp/pytest-of-mockbuild/pytest-0/test_timeraw_benchmark0', 'ASV_ENV_DIR': '/...uild/pytest-0/test_timeraw_benchmark0/env/606287e3db2922a1ea431fdbf3655ceb', 'ASV_ENV_NAME': 'virtualenv-py3.12', ...}} >env = {'ASV': 'true', 'ASV_CONF_DIR': '/tmp/pytest-of-mockbuild/pytest-0/test_timeraw_benchmark0', 'ASV_ENV_DIR': '/tmp/pyte...build/pytest-0/test_timeraw_benchmark0/env/606287e3db2922a1ea431fdbf3655ceb', 'ASV_ENV_NAME': 'virtualenv-py3.12', ...} >paths = ['/tmp/pytest-of-mockbuild/pytest-0/test_timeraw_benchmark0/env/606287e3db2922a1ea431fdbf3655ceb/bin', '/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/bin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', ...] >exe = '/tmp/pytest-of-mockbuild/pytest-0/test_timeraw_benchmark0/env/606287e3db2922a1ea431fdbf3655ceb/bin/python' > def run_executable(self, executable, args, **kwargs): > """ > Run a given executable (eg. python, pip) in the environment. > """ > env = kwargs.pop("env", os.environ).copy() > env.update(self._global_env_vars) > > # Insert bin dirs to PATH > if "PATH" in env: > paths = env["PATH"].split(os.pathsep) > else: > paths = [] > > if WIN: > subpaths = ['Library\\mingw-w64\\bin', > 'Library\\bin', > 'Library\\usr\\bin', > 'Scripts'] > for sub in subpaths[::-1]: > paths.insert(0, os.path.join(self._path, sub)) > paths.insert(0, self._path) > else: > paths.insert(0, os.path.join(self._path, "bin")) > > # Discard PYTHONPATH, which can easily break the environment > # isolation > if 'ASV_PYTHONPATH' in env: > env['PYTHONPATH'] = env['ASV_PYTHONPATH'] > env.pop('ASV_PYTHONPATH', None) > else: > env.pop('PYTHONPATH', None) > > # When running pip, we need to set PIP_USER to false, as --user (which > # may have been set from a pip config file) is incompatible with > # virtualenvs. > kwargs["env"] = dict(env, > PIP_USER=str("false"), > PATH=str(os.pathsep.join(paths))) > exe = self.find_executable(executable) >> return util.check_output([exe] + args, **kwargs) >E asv.util.ProcessError: Command '/tmp/pytest-of-mockbuild/pytest-0/test_timeraw_benchmark0/env/606287e3db2922a1ea431fdbf3655ceb/bin/python -mpip install -v wheel pip>=8' returned non-zero exit status 1 >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/environment.py:949: ProcessError >---------------------------- Captured stdout setup ----------------------------- >[100.00%] ························· No `environment_type` specified in asv.conf.json. This will be required in the future. >----------------------------- Captured stdout call ----------------------------- >[100.00%] ························· Discovering benchmarks >[100.00%] ·························· Creating virtualenv for virtualenv-py3.12 >[100.00%] ·························· Installing requirements for virtualenv-py3.12 >[100.00%] ·························· Error running /tmp/pytest-of-mockbuild/pytest-0/test_timeraw_benchmark0/env/606287e3db2922a1ea431fdbf3655ceb/bin/python -mpip install -v wheel pip>=8 (exit status 1) > STDOUT --------> > Using pip 23.1.2 from /tmp/pytest-of-mockbuild/pytest-0/test_timeraw_benchmark0/env/606287e3db2922a1ea431fdbf3655ceb/lib/python3.12/site-packages/pip (python 3.12) > STDERR --------> > ERROR: Could not find a version that satisfies the requirement wheel (from versions: none) > ERROR: No matching distribution found for wheel >[100.00%] ·························· Failure creating environment for virtualenv-py3.12 >_______________________________ test_run_publish _______________________________ >capfd = <_pytest.capture.CaptureFixture object at 0xffff9768d0a0> >basic_conf = ('/tmp/pytest-of-mockbuild/pytest-0/test_run_publish0', '/builddir/build/BUILD/asv-0.5.1/test', <asv.config.Config object at 0xffff97bce9c0>, '/tmp/pytest-of-mockbuild/pytest-0/test_run_publish0/asv-machine.json') > def test_run_publish(capfd, basic_conf): > tmpdir, local, conf, machine_file = basic_conf > tmpdir = util.long_path(tmpdir) > > conf.matrix = { > "req": dict(conf.matrix), > "env":{"SOME_TEST_VAR": ["1"]}, > } > > # Tests a typical complete run/publish workflow >> ret = tools.run_asv_with_conf(conf, 'run', "master", '--steps=2', > '--quick', '--show-stderr', '--profile', > '-a', 'warmup_time=0', > '--durations=5', > _machine_file=machine_file) >/builddir/build/BUILD/asv-0.5.1/test/test_workflow.py:96: >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >/builddir/build/BUILD/asv-0.5.1/test/tools.py:167: in run_asv_with_conf > return cls.run_from_conf_args(conf, args, **kwargs) >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/commands/run.py:183: in run_from_conf_args > return cls.run( >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/commands/run.py:294: in run > Setup.perform_setup(environments, parallel=parallel) >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/commands/setup.py:89: in perform_setup > list(map(_create, environments)) >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/commands/setup.py:21: in _create > env.create() >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/environment.py:704: in create > self._setup() >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:148: in _setup > self._install_requirements() >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:159: in _install_requirements > self._run_pip(pip_args, env=env) >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:177: in _run_pip > return self.run_executable('python', ['-mpip'] + list(args), **kwargs) >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >self = <asv.plugins.virtualenv.Virtualenv object at 0xffff9768c110> >executable = 'python', args = ['-mpip', 'install', '-v', 'wheel', 'pip>=8'] >kwargs = {'env': {'ASV': 'true', 'ASV_CONF_DIR': '/tmp/pytest-of-mockbuild/pytest-0/test_run_publish0', 'ASV_ENV_DIR': '/tmp/py...a134', 'ASV_ENV_NAME': 'virtualenv-py3.12-asv_dummy_test_package_1-asv_dummy_test_package_20.3.7-SOME_TEST_VAR1', ...}} >env = {'ASV': 'true', 'ASV_CONF_DIR': '/tmp/pytest-of-mockbuild/pytest-0/test_run_publish0', 'ASV_ENV_DIR': '/tmp/pytest-of-...9a134', 'ASV_ENV_NAME': 'virtualenv-py3.12-asv_dummy_test_package_1-asv_dummy_test_package_20.3.7-SOME_TEST_VAR1', ...} >paths = ['/tmp/pytest-of-mockbuild/pytest-0/test_run_publish0/env/e6ef781d8a710fd5b80888baf419a134/bin', '/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/bin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', ...] >exe = '/tmp/pytest-of-mockbuild/pytest-0/test_run_publish0/env/e6ef781d8a710fd5b80888baf419a134/bin/python' > def run_executable(self, executable, args, **kwargs): > """ > Run a given executable (eg. python, pip) in the environment. > """ > env = kwargs.pop("env", os.environ).copy() > env.update(self._global_env_vars) > > # Insert bin dirs to PATH > if "PATH" in env: > paths = env["PATH"].split(os.pathsep) > else: > paths = [] > > if WIN: > subpaths = ['Library\\mingw-w64\\bin', > 'Library\\bin', > 'Library\\usr\\bin', > 'Scripts'] > for sub in subpaths[::-1]: > paths.insert(0, os.path.join(self._path, sub)) > paths.insert(0, self._path) > else: > paths.insert(0, os.path.join(self._path, "bin")) > > # Discard PYTHONPATH, which can easily break the environment > # isolation > if 'ASV_PYTHONPATH' in env: > env['PYTHONPATH'] = env['ASV_PYTHONPATH'] > env.pop('ASV_PYTHONPATH', None) > else: > env.pop('PYTHONPATH', None) > > # When running pip, we need to set PIP_USER to false, as --user (which > # may have been set from a pip config file) is incompatible with > # virtualenvs. > kwargs["env"] = dict(env, > PIP_USER=str("false"), > PATH=str(os.pathsep.join(paths))) > exe = self.find_executable(executable) >> return util.check_output([exe] + args, **kwargs) >E asv.util.ProcessError: Command '/tmp/pytest-of-mockbuild/pytest-0/test_run_publish0/env/e6ef781d8a710fd5b80888baf419a134/bin/python -mpip install -v wheel pip>=8' returned non-zero exit status 1 >/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/environment.py:949: ProcessError >----------------------------- Captured stdout call ----------------------------- >[100.00%] ·························· No `environment_type` specified in asv.conf.json. This will be required in the future. >[100.00%] ·························· Creating environments >[100.00%] ··························· Error running /tmp/pytest-of-mockbuild/pytest-0/test_run_publish0/env/e6ef781d8a710fd5b80888baf419a134/bin/python -mpip install -v wheel pip>=8 (exit status 1) > STDOUT --------> > Using pip 23.1.2 from /tmp/pytest-of-mockbuild/pytest-0/test_run_publish0/env/e6ef781d8a710fd5b80888baf419a134/lib/python3.12/site-packages/pip (python 3.12) > Looking in links: file:///builddir/build/BUILD/asv-0.5.1/.pytest_cache/d/asv-wheels/cache/wheels > STDERR --------> > ERROR: Could not find a version that satisfies the requirement wheel (from versions: none) > ERROR: No matching distribution found for wheel >[100.00%] ··························· Failure creating environment for virtualenv-py3.12-asv_dummy_test_package_1-asv_dummy_test_package_20.3.7-SOME_TEST_VAR1 >=============================== warnings summary =============================== >../../../../usr/lib/python3.12/site-packages/feedparser/encodings.py:29 > /usr/lib/python3.12/site-packages/feedparser/encodings.py:29: DeprecationWarning: 'cgi' is deprecated and slated for removal in Python 3.13 > import cgi >../../../../usr/lib/python3.12/site-packages/pytz/tzinfo.py:27 > /usr/lib/python3.12/site-packages/pytz/tzinfo.py:27: DeprecationWarning: datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.fromtimestamp(timestamp, datetime.UTC). > _epoch = datetime.utcfromtimestamp(0) >test/test_benchmarks.py: 6 warnings >test/test_check.py: 1 warning >test/test_continuous.py: 1 warning >test/test_dev.py: 5 warnings >test/test_environment.py: 11 warnings >test/test_find.py: 3 warnings >test/test_run.py: 10 warnings >test/test_runner.py: 5 warnings >test/test_workflow.py: 1 warning > /builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/virtualenv.py:119: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. > if LooseVersion(virtualenv.__version__) == LooseVersion('1.11.0'): >test/test_dev.py::test_dev >test/test_dev.py::test_dev_with_repo_subdir >test/test_dev.py::test_dev_strict >test/test_dev.py::test_run_python_same >test/test_dev.py::test_profile_python_same >test/test_run.py::test_set_commit_hash > /builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/runner.py:277: DeprecationWarning: datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.now(datetime.UTC). > started_at = datetime.datetime.utcnow() >test/test_gh_pages.py: 10 warnings >test/test_publish.py: 9 warnings > /builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/feed.py:128: DeprecationWarning: datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.now(datetime.UTC). > updated = datetime.datetime.utcnow() >test/test_gh_pages.py: 10 warnings >test/test_publish.py: 30 warnings > /builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/commands/publish.py:289: DeprecationWarning: datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.now(datetime.UTC). > 'timestamp': util.datetime_to_js_timestamp(datetime.datetime.utcnow()) >test/test_repo.py::test_repo_hg > /usr/lib/python3.12/site-packages/_pytest/unraisableexception.py:78: PytestUnraisableExceptionWarning: Exception ignored in: <function Hg.__del__ at 0xffffb3abc540> > > Traceback (most recent call last): > File "/builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/plugins/mercurial.py", line 62, in __del__ > if self._repo is not None: > ^^^^^^^^^^ > AttributeError: 'Hg' object has no attribute '_repo' > > warnings.warn(pytest.PytestUnraisableExceptionWarning(msg)) >test/test_results.py::test_results > /builddir/build/BUILD/asv-0.5.1/test/test_results.py:35: DeprecationWarning: datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.now(datetime.UTC). > timestamp1 = datetime.datetime.utcnow() >test/test_results.py::test_remove_samples >test/test_runner.py::test_skip_param_selection > /builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/results.py:481: DeprecationWarning: datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.now(datetime.UTC). > started_at = datetime.datetime.utcnow() >test/test_run.py::test_run_build_failure > /builddir/build/BUILD/asv-0.5.1/test/test_run.py:161: DeprecationWarning: datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.now(datetime.UTC). > timestamp = util.datetime_to_js_timestamp(datetime.datetime.utcnow()) >test/test_runner.py::test_run_benchmarks > /builddir/build/BUILD/asv-0.5.1/test/test_runner.py:68: DeprecationWarning: datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.now(datetime.UTC). > start_timestamp = datetime.datetime.utcnow() >test/test_runner.py::test_skip_param_selection > /builddir/build/BUILDROOT/asv-0.5.1-11.fc39.aarch64/usr/lib64/python3.12/site-packages/asv/runner.py:100: DeprecationWarning: datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.now(datetime.UTC). > started_at = datetime.datetime.utcnow() >test/test_util.py::test_datetime_to_js_timestamp > /builddir/build/BUILD/asv-0.5.1/test/test_util.py:365: DeprecationWarning: datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.fromtimestamp(timestamp, datetime.UTC). > t = datetime.datetime.utcfromtimestamp(ts) >test/test_util.py::test_datetime_to_timestamp > /builddir/build/BUILD/asv-0.5.1/test/test_util.py:385: DeprecationWarning: datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.fromtimestamp(timestamp, datetime.UTC). > t = datetime.datetime.utcfromtimestamp(ts) >-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html >=========================== short test summary info ============================ >SKIPPED [1] test/test_environment.py:25: Requires two usable Python versions >SKIPPED [1] test/test_environment.py:323: Requires conda and conda-build >SKIPPED [1] test/test_environment.py:347: Requires conda and conda-build >SKIPPED [1] test/test_environment.py:379: Requires conda and conda-build >SKIPPED [2] test/test_environment.py:523: Requires conda and conda-build >SKIPPED [1] test/test_environment.py:573: Requires pypy and virtualenv >SKIPPED [1] test/test_environment.py:610: needs conda and conda-build >SKIPPED [1] test/test_feed.py:108: test requires feedvalidator module >FAILED test/test_benchmarks.py::test_discover_benchmarks - asv.util.ProcessEr... >FAILED test/test_benchmarks.py::test_find_benchmarks_cwd_imports - asv.util.P... >FAILED test/test_benchmarks.py::test_import_failure_retry - asv.util.ProcessE... >FAILED test/test_benchmarks.py::test_conf_inside_benchmarks_dir - asv.util.Pr... >FAILED test/test_benchmarks.py::test_code_extraction - asv.util.ProcessError:... >FAILED test/test_continuous.py::test_continuous - asv.util.ProcessError: Comm... >FAILED test/test_environment.py::test_presence_checks - asv.util.ProcessError... >FAILED test/test_environment.py::test_environment_environ_path[virtualenv] - ... >FAILED test/test_environment.py::test_build_isolation - asv.util.ProcessError... >FAILED test/test_environment.py::test_custom_commands - asv.util.ProcessError... >FAILED test/test_environment.py::test_installed_commit_hash - asv.util.Proces... >FAILED test/test_environment.py::test_install_success - asv.util.ProcessError... >FAILED test/test_environment.py::test_install_env_matrix_values - asv.util.Pr... >FAILED test/test_find.py::test_find - asv.util.ProcessError: Command '/tmp/py... >FAILED test/test_find.py::test_find_timeout - asv.util.ProcessError: Command ... >FAILED test/test_find.py::test_find_inverted - asv.util.ProcessError: Command... >FAILED test/test_run.py::test_run_spec - asv.util.ProcessError: Command '/tmp... >FAILED test/test_run.py::test_run_build_failure - asv.util.ProcessError: Comm... >FAILED test/test_run.py::test_run_with_repo_subdir - asv.util.ProcessError: C... >FAILED test/test_run.py::test_benchmark_param_selection - asv.util.ProcessErr... >FAILED test/test_run.py::test_run_append_samples - asv.util.ProcessError: Com... >FAILED test/test_run.py::test_cpu_affinity - asv.util.ProcessError: Command '... >FAILED test/test_run.py::test_env_matrix_value - asv.util.ProcessError: Comma... >FAILED test/test_run.py::test_parallel - asv.util.ParallelFailure: ProcessErr... >FAILED test/test_run.py::test_filter_date_period - asv.util.ProcessError: Com... >FAILED test/test_run.py::test_return_code_strict_mode - asv.util.ProcessError... >FAILED test/test_runner.py::test_run_benchmarks - asv.util.ProcessError: Comm... >FAILED test/test_runner.py::test_quick - asv.util.ProcessError: Command '/tmp... >FAILED test/test_runner.py::test_run_import_failure[spawn] - asv.util.Process... >FAILED test/test_runner.py::test_run_import_failure[forkserver] - asv.util.Pr... >FAILED test/test_runner.py::test_timeraw_benchmark - asv.util.ProcessError: C... >FAILED test/test_workflow.py::test_run_publish - asv.util.ProcessError: Comma... >= 32 failed, 172 passed, 9 skipped, 3 deselected, 119 warnings in 216.49s (0:03:36) = >error: Bad exit status from /var/tmp/rpm-tmp.xxl1Bs (%check) >RPM build warnings: > The %{pyproject_build_lib} macro is deprecated. >It only works with setuptools and is not build-backend-agnostic. >The macro is not scheduled for removal, but there is a possibility of incompatibilities with future versions of setuptools. >As a replacement for the macro for the setuptools backend on Fedora 37+, you can use $PWD/build/lib for pure Python packages, >or $PWD/build/lib.%{python3_platform}-cpython-%{python3_version_nodots} for packages with extension modules. >Other build backends and older distributions may need different paths. >See https://lists.fedoraproject.org/archives/list/python-devel@lists.fedoraproject.org/thread/HMLOPAU3RZLXD4BOJHTIPKI3I4U6U7OE/ for details. >RPM build errors: > Bad exit status from /var/tmp/rpm-tmp.xxl1Bs (%check) >Child return code was: 1 >EXCEPTION: [Error('Command failed: \n # /usr/bin/systemd-nspawn -q -M b66ad7bc46d64522a7ab99e4f3fe0bd9 -D /var/lib/mock/f39-build-44259491-5274384/root -a -u mockbuild --capability=cap_ipc_lock --bind=/tmp/mock-resolv.5rxc19kw:/etc/resolv.conf --bind=/dev/btrfs-control --bind=/dev/mapper/control --bind=/dev/loop-control --bind=/dev/loop0 --bind=/dev/loop1 --bind=/dev/loop2 --bind=/dev/loop3 --bind=/dev/loop4 --bind=/dev/loop5 --bind=/dev/loop6 --bind=/dev/loop7 --bind=/dev/loop8 --bind=/dev/loop9 --bind=/dev/loop10 --bind=/dev/loop11 --console=pipe --setenv=TERM=vt100 --setenv=SHELL=/bin/bash --setenv=HOME=/builddir --setenv=HOSTNAME=mock --setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin --setenv=PROMPT_COMMAND=printf "\\033]0;<mock-chroot>\\007" --setenv=PS1=<mock-chroot> \\s-\\v\\$ --setenv=LANG=C.UTF-8 --resolv-conf=off bash --login -c /usr/bin/rpmbuild -ba --noprep --noclean --target aarch64 --nodeps /builddir/build/SPECS/asv.spec\n', 1)] >Traceback (most recent call last): > File "/usr/lib/python3.11/site-packages/mockbuild/trace_decorator.py", line 93, in trace > result = func(*args, **kw) > ^^^^^^^^^^^^^^^^^ > File "/usr/lib/python3.11/site-packages/mockbuild/util.py", line 597, in do_with_status > raise exception.Error("Command failed: \n # %s\n%s" % (command, output), child.returncode) >mockbuild.exception.Error: Command failed: > # /usr/bin/systemd-nspawn -q -M b66ad7bc46d64522a7ab99e4f3fe0bd9 -D /var/lib/mock/f39-build-44259491-5274384/root -a -u mockbuild --capability=cap_ipc_lock --bind=/tmp/mock-resolv.5rxc19kw:/etc/resolv.conf --bind=/dev/btrfs-control --bind=/dev/mapper/control --bind=/dev/loop-control --bind=/dev/loop0 --bind=/dev/loop1 --bind=/dev/loop2 --bind=/dev/loop3 --bind=/dev/loop4 --bind=/dev/loop5 --bind=/dev/loop6 --bind=/dev/loop7 --bind=/dev/loop8 --bind=/dev/loop9 --bind=/dev/loop10 --bind=/dev/loop11 --console=pipe --setenv=TERM=vt100 --setenv=SHELL=/bin/bash --setenv=HOME=/builddir --setenv=HOSTNAME=mock --setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin --setenv=PROMPT_COMMAND=printf "\033]0;<mock-chroot>\007" --setenv=PS1=<mock-chroot> \s-\v\$ --setenv=LANG=C.UTF-8 --resolv-conf=off bash --login -c /usr/bin/rpmbuild -ba --noprep --noclean --target aarch64 --nodeps /builddir/build/SPECS/asv.spec >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 2225709
: 1977605 |
1977606
|
1977607