[arch-commits] Commit in python-parameterized/trunk (2 files)
Felix Yan
felixonmars at archlinux.org
Wed Apr 22 01:21:41 UTC 2020
Date: Wednesday, April 22, 2020 @ 01:21:32
Author: felixonmars
Revision: 617441
remove doc test hack
Modified:
python-parameterized/trunk/PKGBUILD
Deleted:
python-parameterized/trunk/skip_Documentation_tests.patch
--------------------------------+
PKGBUILD | 12 ++----------
skip_Documentation_tests.patch | 20 --------------------
2 files changed, 2 insertions(+), 30 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2020-04-22 01:20:49 UTC (rev 617440)
+++ PKGBUILD 2020-04-22 01:21:32 UTC (rev 617441)
@@ -10,17 +10,9 @@
depends=('python')
makedepends=('python-setuptools')
checkdepends=('python-nose' 'python-mock')
-source=("https://pypi.io/packages/source/p/parameterized/parameterized-$pkgver.tar.gz"
- skip_Documentation_tests.patch)
-sha512sums=('ff4ce23356bbaa13bd92f41bb57b650cd1cf3074ac33116ccb88e37bfae8a1bf6ce7015246e0e7788b247fa8f8b3780cdc73e8760b252e8458e4e15719c14dda'
- '70a2408e954c8d19dc80b8de472f0d83d8ae44a7360f72855236ce2c239dde417c9e1bad2ad09855c1538e99e228a4cc1a2e81c6d2edf9fa1718f7cb400f2d54')
+source=("https://pypi.io/packages/source/p/parameterized/parameterized-$pkgver.tar.gz")
+sha512sums=('ff4ce23356bbaa13bd92f41bb57b650cd1cf3074ac33116ccb88e37bfae8a1bf6ce7015246e0e7788b247fa8f8b3780cdc73e8760b252e8458e4e15719c14dda')
-prepare() {
- cd parameterized-$pkgver
- # https://github.com/wolever/parameterized/issues/84
- patch -p1 -i ../skip_Documentation_tests.patch
-}
-
build() {
cd parameterized-$pkgver
python setup.py build
Deleted: skip_Documentation_tests.patch
===================================================================
--- skip_Documentation_tests.patch 2020-04-22 01:20:49 UTC (rev 617440)
+++ skip_Documentation_tests.patch 2020-04-22 01:21:32 UTC (rev 617441)
@@ -1,20 +0,0 @@
---- a/parameterized/test.py
-+++ b/parameterized/test.py
-@@ -2,7 +2,8 @@
-
- import inspect
- import mock
--from unittest import TestCase
-+import sys
-+from unittest import TestCase, skipIf
- from nose.tools import assert_equal, assert_raises
-
- from .parameterized import (
-@@ -241,6 +242,7 @@ class TestParamerizedOnTestCase(TestCase
- missing_tests.remove("%s(%r, bar=%r)" %(expected_name, foo, bar))
-
-
-+ at skipIf(sys.version_info[:2] >= (3, 8), "Doesn't work with Python 3.8")
- class TestParameterizedExpandDocstring(TestCase):
- def _assert_docstring(self, expected_docstring, rstrip=False):
- """ Checks the current test method's docstring. Must be called directly
More information about the arch-commits
mailing list