Hello community,

here is the log from the commit of package python-openqa_review for 
openSUSE:Factory checked in at 2020-07-24 13:35:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-openqa_review (Old)
 and      /work/SRC/openSUSE:Factory/.python-openqa_review.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-openqa_review"

Fri Jul 24 13:35:32 2020 rev:33 rq:822609 version:1.20.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-openqa_review/python-openqa_review.changes    
    2020-05-28 09:15:58.196772689 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-openqa_review.new.3592/python-openqa_review.changes
      2020-07-24 13:35:50.270708050 +0200
@@ -1,0 +2,6 @@
+Fri Jul 24 10:51:24 UTC 2020 - ok...@suse.com
+
+- Update to version 1.20.1:
+  * Read text data from details JSON if present
+
+-------------------------------------------------------------------

Old:
----
  python-openqa_review-1.20.0.obscpio

New:
----
  python-openqa_review-1.20.1.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-openqa_review.spec ++++++
--- /var/tmp/diff_new_pack.M7j3Vl/_old  2020-07-24 13:35:52.994710759 +0200
+++ /var/tmp/diff_new_pack.M7j3Vl/_new  2020-07-24 13:35:52.998710763 +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.20.0
+Version:        1.20.1
 Release:        0
 Summary:        A review helper script for openQA
 License:        MIT

++++++ python-openqa_review-1.20.0.obscpio -> 
python-openqa_review-1.20.1.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-openqa_review-1.20.0/openqa_review/openqa_review.py 
new/python-openqa_review-1.20.1/openqa_review/openqa_review.py
--- old/python-openqa_review-1.20.0/openqa_review/openqa_review.py      
2020-05-26 15:15:33.000000000 +0200
+++ new/python-openqa_review-1.20.1/openqa_review/openqa_review.py      
2020-07-24 12:49:26.000000000 +0200
@@ -913,7 +913,10 @@
         details = details_json['details'] if 'details' in details_json else 
details_json
         for field in details:
             if 'title' in field and 'Soft Fail' in field['title']:
-                unformated_str = self.test_browser.get_soup('%s/file/%s' % 
(result_item['href'], quote(field['text']))).getText()
+                if 'text_data' in field:
+                    unformated_str = field['text_data']
+                else:
+                    unformated_str = self.test_browser.get_soup('%s/file/%s' % 
(result_item['href'], quote(field['text']))).getText()
                 return re.search('Soft Failure:\n(.*)', 
unformated_str.strip()).group(1)
             elif 'properties' in field and len(field['properties']) > 0 and 
field['properties'][0] == 'workaround':
                 log.debug("Evaluating potential workaround needle '%s'" % 
field['needle'])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-openqa_review-1.20.0/tests/tags_labels/:tests:684839:file:details-zypper_info.json
 
new/python-openqa_review-1.20.1/tests/tags_labels/:tests:684839:file:details-zypper_info.json
--- 
old/python-openqa_review-1.20.0/tests/tags_labels/:tests:684839:file:details-zypper_info.json
       2020-05-26 15:15:33.000000000 +0200
+++ 
new/python-openqa_review-1.20.1/tests/tags_labels/:tests:684839:file:details-zypper_info.json
       2020-07-24 12:49:26.000000000 +0200
@@ -10,6 +10,7 @@
       "result": "unk"
     },
     "title": "Soft Failed",
-    "text": "zypper_info-4.txt"
+    "text": "zypper_info-4.txt",
+    "text_data": "# Soft Failure:\nfor Leap:15.0:Ports aarch64 and ppc64le, do 
not enable source repo, waiting for https://progress.opensuse.org/issues/36256 
to be solved, and also http://fate.suse.com/12345 ✓"
   }
 ]
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-openqa_review-1.20.0/tests/tags_labels/:tests:684839:file:zypper_info-4.txt
 
new/python-openqa_review-1.20.1/tests/tags_labels/:tests:684839:file:zypper_info-4.txt
--- 
old/python-openqa_review-1.20.0/tests/tags_labels/:tests:684839:file:zypper_info-4.txt
      2020-05-26 15:15:33.000000000 +0200
+++ 
new/python-openqa_review-1.20.1/tests/tags_labels/:tests:684839:file:zypper_info-4.txt
      1970-01-01 01:00:00.000000000 +0100
@@ -1,2 +0,0 @@
-# Soft Failure:
-for Leap:15.0:Ports aarch64 and ppc64le, do not enable source repo, waiting 
for https://progress.opensuse.org/issues/36256 to be solved, and also 
http://fate.suse.com/12345 ✓

++++++ python-openqa_review.obsinfo ++++++
--- /var/tmp/diff_new_pack.M7j3Vl/_old  2020-07-24 13:35:53.374711137 +0200
+++ /var/tmp/diff_new_pack.M7j3Vl/_new  2020-07-24 13:35:53.374711137 +0200
@@ -1,5 +1,5 @@
 name: python-openqa_review
-version: 1.20.0
-mtime: 1590498933
-commit: 30c728f38d18ceb9fe797c79c1c0615ee68c46d1
+version: 1.20.1
+mtime: 1595587766
+commit: 935b63b9a536b3aa6eb76cc184fd22b3a720df86
 


Reply via email to