Hello community,
here is the log from the commit of package python-openqa_review for
openSUSE:Factory checked in at 2020-05-28 09:15:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-openqa_review (Old)
and /work/SRC/openSUSE:Factory/.python-openqa_review.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-openqa_review"
Thu May 28 09:15:26 2020 rev:32 rq:809163 version:1.20.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-openqa_review/python-openqa_review.changes
2020-05-09 22:20:03.239594516 +0200
+++
/work/SRC/openSUSE:Factory/.python-openqa_review.new.3606/python-openqa_review.changes
2020-05-28 09:15:58.196772689 +0200
@@ -1,0 +2,7 @@
+Wed May 27 06:35:20 UTC 2020 - [email protected]
+
+- Update to version 1.20.0:
+ * Fix 'E741 ambiguous variable name' in tests
+ * Adapt parsing of soft-failure details on openQA >=
4.5.1528009330.e68ebe2b-3454-gd19c50d6b
+
+-------------------------------------------------------------------
Old:
----
python-openqa_review-1.19.0.obscpio
New:
----
python-openqa_review-1.20.0.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-openqa_review.spec ++++++
--- /var/tmp/diff_new_pack.vVXkdH/_old 2020-05-28 09:15:59.776776416 +0200
+++ /var/tmp/diff_new_pack.vVXkdH/_new 2020-05-28 09:15:59.776776416 +0200
@@ -31,7 +31,7 @@
%define binaries openqa-review openqa-review-daily-email
openqa-review-sles-ha tumblesle-release openqa-review-functional_yast_concise
%define oldpython python
Name: python-%{short_name}%{?name_ext}
-Version: 1.19.0
+Version: 1.20.0
Release: 0
Summary: A review helper script for openQA
License: MIT
++++++ python-openqa_review-1.19.0.obscpio ->
python-openqa_review-1.20.0.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-openqa_review-1.19.0/openqa_review/openqa_review.py
new/python-openqa_review-1.20.0/openqa_review/openqa_review.py
--- old/python-openqa_review-1.19.0/openqa_review/openqa_review.py
2020-05-05 21:34:49.000000000 +0200
+++ new/python-openqa_review-1.20.0/openqa_review/openqa_review.py
2020-05-26 15:15:33.000000000 +0200
@@ -889,9 +889,13 @@
def _get_url_to_softfailed_module(self, job_url):
log.debug('job_url %s' % job_url)
- url = job_url + '/details_ajax'
+ url = job_url + '/module_components_ajax'
try:
test_details_html =
self.test_browser.get_soup(url).find(title='Soft Failed')
+ if test_details_html is None: # pragma: no cover
+ log.debug('Found older openQA, before
https://github.com/os-autoinst/openQA/pull/3080')
+ url = job_url + '/details_ajax'
+ test_details_html =
self.test_browser.get_soup(url).find(title='Soft Failed')
except DownloadError:
log.debug('Found older openQA, before
https://github.com/os-autoinst/openQA/pull/2932')
url = job_url
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-openqa_review-1.19.0/tests/test_openqa_review.py
new/python-openqa_review-1.20.0/tests/test_openqa_review.py
--- old/python-openqa_review-1.19.0/tests/test_openqa_review.py 2020-05-05
21:34:49.000000000 +0200
+++ new/python-openqa_review-1.20.0/tests/test_openqa_review.py 2020-05-26
15:15:33.000000000 +0200
@@ -192,7 +192,7 @@
report = str(openqa_review.generate_report(args))
assert args.job_groups in report
# There must be only one job group tag
- assert len([l for l in report.splitlines() if l.startswith('#')]) == 1
+ assert len([line for line in report.splitlines() if line.startswith('#')])
== 1
# Invalid name should yield assertion with helpful message
args.job_groups = 'openSUSE Tumbleweed FOO'
++++++ python-openqa_review.obsinfo ++++++
--- /var/tmp/diff_new_pack.vVXkdH/_old 2020-05-28 09:16:00.244777521 +0200
+++ /var/tmp/diff_new_pack.vVXkdH/_new 2020-05-28 09:16:00.244777521 +0200
@@ -1,5 +1,5 @@
name: python-openqa_review
-version: 1.19.0
-mtime: 1588707289
-commit: b1b3b110653693ee308fa41b570e6d33e8e283da
+version: 1.20.0
+mtime: 1590498933
+commit: 30c728f38d18ceb9fe797c79c1c0615ee68c46d1