From 6fb6957ade254f7ed5b586410d9f3b1f7dc11ade Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 28 Nov 2020 23:12:20 -0500 Subject: [PATCH] python3-hypothesis: update to 5.41.4. --- srcpkgs/python3-hypothesis/template | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-hypothesis/template b/srcpkgs/python3-hypothesis/template index 49e0c1ebe91..692eb54c52c 100644 --- a/srcpkgs/python3-hypothesis/template +++ b/srcpkgs/python3-hypothesis/template @@ -1,22 +1,21 @@ # Template file for 'python3-hypothesis' pkgname=python3-hypothesis -version=5.41.3 +version=5.41.4 revision=1 wrksrc="hypothesis-hypothesis-python-${version}" build_wrksrc=hypothesis-python build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-attrs python3-sortedcontainers" -checkdepends="python3-pytest python3-coverage python3-pexpect ${depends}" +checkdepends="tox" short_desc="Python3 library for property based testing" maintainer="Andrew J. Hesford " license="MPL-2.0" homepage="https://hypothesis.works/" changelog="https://hypothesis.readthedocs.io/en/latest/changes.html" distfiles="https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-${version}.tar.gz" -checksum=c41d6d5f35059c31996788822206a17c6ccfc34e5570cb9a4878f66767b76246 +checksum=865027f77db5be518a8398e88bf937eb602d6f1a49643faa6c8dbb8804570bbb do_check() { - # test_settings_alone seems to expect a warning or failure that doesn't appear - PYTHONPATH="${PWD}/build/lib" pytest3 -k 'not test_settings_alone' tests/cover + tox -e "py${py3_ver/./}-full" }