Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-Glances for openSUSE:Factory checked in at 2021-01-26 14:46:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-Glances (Old) and /work/SRC/openSUSE:Factory/.python-Glances.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-Glances" Tue Jan 26 14:46:11 2021 rev:11 rq:865312 version:3.1.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-Glances/python-Glances.changes 2020-08-24 15:15:08.262745924 +0200 +++ /work/SRC/openSUSE:Factory/.python-Glances.new.28504/python-Glances.changes 2021-01-26 14:49:51.111685957 +0100 @@ -1,0 +2,5 @@ +Wed Jan 20 16:04:11 UTC 2021 - Andreas Schwab <sch...@suse.de> + +- unitest-wait-for-server.patch: increase time to wait for server to start + +------------------------------------------------------------------- New: ---- unitest-wait-for-server.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-Glances.spec ++++++ --- /var/tmp/diff_new_pack.Ai1B7T/_old 2021-01-26 14:49:52.027687206 +0100 +++ /var/tmp/diff_new_pack.Ai1B7T/_new 2021-01-26 14:49:52.031687211 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-Glances # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -29,6 +29,7 @@ Patch1: remove-shebang.patch Patch2: skip-online-tests.patch Patch3: fix-tests.patch +Patch4: unitest-wait-for-server.patch BuildRequires: %{python_module bottle} BuildRequires: %{python_module future} BuildRequires: %{python_module psutil >= 5.6.3} ++++++ unitest-wait-for-server.patch ++++++ Index: glances-3.1.5/unitest-xmlrpc.py =================================================================== --- glances-3.1.5.orig/unitest-xmlrpc.py +++ glances-3.1.5/unitest-xmlrpc.py @@ -59,7 +59,7 @@ class TestGlances(unittest.TestCase): args = shlex.split(cmdline) pid = subprocess.Popen(args) print("Please wait...") - time.sleep(1) + time.sleep(5) self.assertTrue(pid is not None)