Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-quantities for openSUSE:Factory checked in at 2021-01-26 14:46:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-quantities (Old) and /work/SRC/openSUSE:Factory/.python-quantities.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-quantities" Tue Jan 26 14:46:08 2021 rev:3 rq:865061 version:0.12.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-quantities/python-quantities.changes 2020-02-03 11:13:26.785848817 +0100 +++ /work/SRC/openSUSE:Factory/.python-quantities.new.28504/python-quantities.changes 2021-01-26 14:49:49.859684250 +0100 @@ -1,0 +2,7 @@ +Wed Jan 20 14:30:54 UTC 2021 - andy great <andythe_gr...@pm.me> + +- Change from pytest to unittest. +- Remove test_umath because the test no longer fails when expected + to fail. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-quantities.spec ++++++ --- /var/tmp/diff_new_pack.0Smnel/_old 2021-01-26 14:49:50.719685423 +0100 +++ /var/tmp/diff_new_pack.0Smnel/_new 2021-01-26 14:49:50.723685428 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-quantities # -# 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 @@ -38,6 +38,9 @@ %prep %autosetup -p1 -n python-quantities-%{version} +# Test no longer fails when expected to fail. +# https://github.com/python-quantities/python-quantities/issues/8 +rm quantities/tests/test_umath.py %build %python_build @@ -47,8 +50,9 @@ %python_expand %fdupes %{buildroot}%{$python_sitelib} %check -# No longer fails https://github.com/python-quantities/python-quantities/issues/8 -%pytest -k 'not test_fix' +# Change to unittest because pytest not support. +# https://github.com/python-quantities/python-quantities/issues/160 +%pyunittest discover -v %files %{python_files} %doc CHANGES.txt README.rst ++++++ python-quantities-0.12.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-quantities-0.12.4/quantities/_version.py new/python-quantities-0.12.4/quantities/_version.py --- old/python-quantities-0.12.4/quantities/_version.py 2020-01-08 17:22:26.000000000 +0100 +++ new/python-quantities-0.12.4/quantities/_version.py 2020-01-08 17:22:26.000000000 +0100 @@ -23,7 +23,7 @@ # setup.py/versioneer.py will grep for the variable names, so they must # each be defined on a line of their own. _version.py will just call # get_keywords(). - git_refnames = " (HEAD -> master, tag: v0.12.4)" + git_refnames = " (tag: v0.12.4)" git_full = "1a0b45052158df92fbe60b73470fafa609ee138c" git_date = "2020-01-08 17:22:26 +0100" keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}