Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
abd5fd0366
!17 Update to 2.6.0
From: @starlet-dx 
Reviewed-by: @lyn1001 
Signed-off-by: @lyn1001
2023-06-14 06:03:31 +00:00
starlet-dx
165beeced6 Update to 2.6.0 2023-06-14 09:55:09 +08:00
openeuler-ci-bot
de7a49d0db
!14 Update to 2.5.0
From: @starlet-dx 
Reviewed-by: @licihua 
Signed-off-by: @licihua
2022-07-07 12:47:36 +00:00
starlet-dx
3d9d907c14 Update to 2.5.0 2022-07-07 18:56:21 +08:00
openeuler-ci-bot
35ec6b181e
!12 Fix changelog error
From: @ccdxx 
Reviewed-by: @licihua 
Signed-off-by: @licihua
2022-06-14 11:21:28 +00:00
chendexi
5ac8371fa2
Fix changelog error 2022-06-08 06:35:56 +00:00
openeuler-ci-bot
7b58253ca3
!11 修复编译失败问题
From: @caodongxia 
Reviewed-by: @ruebb 
Signed-off-by: @ruebb
2022-04-06 01:32:07 +00:00
caodongxia
ddeb2bd42c fix test failed due to python3.10 2022-04-02 11:14:55 +08:00
openeuler-ci-bot
68215a8a3f !4 Upgrade package to version 2.4.0 for OpenStack Wallaby support
From: @sean-lau
Reviewed-by: @huangtianhua,@zhuchunyi
Signed-off-by: @zhuchunyi
2021-08-12 08:16:59 +00:00
sean-lau
8531e1f027 Upgrade package to version 2.4.0 for OpenStack Wallaby support 2021-08-06 17:16:38 +08:00
5 changed files with 23 additions and 89 deletions

View File

@ -1,14 +1,11 @@
Name: python-testtools
Version: 2.3.0
Release: 12
Version: 2.6.0
Release: 1
Summary: Extensions to the Python unit testing framework
License: MIT
URL: https://launchpad.net/testtools
Source0: https://pypi.io/packages/source/t/testtools/testtools-%{version}.tar.gz
Patch0001: testtools-1.8.0-py3.patch
Patch0002: testtools-2.3.0-py37.patch
BuildRequires: python3-extras python3-mimeparse python3-pbr python3-setuptools python3-unittest2
BuildRequires: python3-traceback2 python3-testscenarios python3-sphinx python3-devel
BuildArch: noarch
@ -37,36 +34,41 @@ Obsoletes: %{name}-doc < %{version}-%{release}
This package contains HTML documentation for python-testtools.
%prep
%setup -q -n testtools-%{version}
%patch0002 -p1
rm -rf %{py3dir}
cp -a . %{py3dir}
cd %{py3dir}
%patch0001 -p1
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
rm -f %{py3dir}/testtools/_compat2x.py %{_builddir}/testtools-%{version}/testtools/_compat3x.py
%autosetup -n testtools-%{version} -p1
rm -rf testtools.egg-info
%build
%py3_build
PYTHONPATH=$PWD make -C doc html
cd %{py3dir}
%{__python3} setup.py build
%install
cd %{py3dir}
%{__python3} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
%py3_install
%check
cd %{py3dir}
make PYTHON=%{__python3} check
export PYTHONPATH=%{buildroot}%{python3_sitelib}
%{__python3} -m testtools.run testtools.tests.test_suite
%files -n python3-testtools
%doc LICENSE NEWS README.rst
%doc NEWS README.rst
%license LICENSE
%{python3_sitelib}/*
%files help
%doc doc/_build/html/*
%changelog
* Wed Jun 14 2023 yaoxin <yao_xin001@hoperun.com> - 2.6.0-1
- Update to 2.6.0
* Thu Jul 7 2022 yaoxin <yaoxin30@h-partners.com> - 2.5.0-1
- Update to 2.5.0
* Sat Apr 2 2022 caodongxia <caodongxia@huawei.com> - 2.4.0-2
- Fix test_testresult and test_testsuite failed due to python3.10
* Fri Aug 06 2021 liusheng <liusheng2048@gmail.com> - 2.4.0-1
- Upgrade to version 2.4.0
* Tue Aug 11 2020 zhangtao <zhangtao221@huawei.com> - 2.3.0-12
- Del Python2-testtools python2 is EOL and we recommend python3

View File

@ -1,14 +0,0 @@
--- testtools-1.8.0/testtools/compat.py.py3 2015-03-11 04:19:19.000000000 +0700
+++ testtools-1.8.0/testtools/compat.py 2015-07-28 22:54:02.537568121 +0700
@@ -32,10 +32,7 @@
# To let setup.py work, make this a conditional import.
linecache = try_import('linecache2')
-try:
- from testtools import _compat2x as _compat
-except SyntaxError:
- from testtools import _compat3x as _compat
+from testtools import _compat3x as _compat
reraise = _compat.reraise

View File

@ -1,54 +0,0 @@
From 29004731f9c480b7c44a9c2605513d50d372898f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
Date: Thu, 17 May 2018 17:52:26 +0200
Subject: [PATCH] Fix the tests on Python 3.7
Exception's repr got changed not to include trailing comma
Fixes https://github.com/testing-cabal/testtools/issues/270
---
.travis.yml | 1 +
testtools/tests/matchers/test_exception.py | 11 +++++++++--
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 7f1f4db7..784608e0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,6 +5,7 @@ python:
- "3.4"
- "3.5"
- "3.6"
+ - "3.7-dev"
- "pypy"
install:
diff --git a/testtools/tests/matchers/test_exception.py b/testtools/tests/matchers/test_exception.py
index 6cd80af1..acd39252 100644
--- a/testtools/tests/matchers/test_exception.py
+++ b/testtools/tests/matchers/test_exception.py
@@ -32,15 +32,22 @@ class TestMatchesExceptionInstanceInterface(TestCase, TestMatchersInterface):
matches_matches = [error_foo]
matches_mismatches = [error_bar, error_base_foo]
+ if sys.version_info >= (3, 7):
+ # exception's repr has changed
+ _e = ''
+ else:
+ _e = ','
+
str_examples = [
- ("MatchesException(Exception('foo',))",
+ ("MatchesException(Exception('foo'%s))" % _e,
MatchesException(Exception('foo')))
]
describe_examples = [
("%r is not a %r" % (Exception, ValueError),
error_base_foo,
MatchesException(ValueError("foo"))),
- ("ValueError('bar',) has different arguments to ValueError('foo',).",
+ ("ValueError('bar'%s) has different arguments to ValueError('foo'%s)."
+ % (_e, _e),
error_bar,
MatchesException(ValueError("foo"))),
]

Binary file not shown.

BIN
testtools-2.6.0.tar.gz Normal file

Binary file not shown.