From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34322) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jTWFi-0006LL-Ko for guix-patches@gnu.org; Tue, 28 Apr 2020 15:51:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jTWE2-0005XG-Kr for guix-patches@gnu.org; Tue, 28 Apr 2020 15:50:46 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58274) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jTWE2-0005XB-7k for guix-patches@gnu.org; Tue, 28 Apr 2020 15:49:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jTWE2-0002Is-6X for guix-patches@gnu.org; Tue, 28 Apr 2020 15:49:02 -0400 Subject: [bug#40511] [PATCH 5/10] gnu: Add python-pytest-watch. Resent-Message-ID: References: <87d08h51lw.fsf@dustycloud.org> <87d07rtmvt.fsf@dustycloud.org> From: Christopher Lemmer Webber In-reply-to: <87d07rtmvt.fsf@dustycloud.org> Date: Tue, 28 Apr 2020 15:48:37 -0400 Message-ID: <877dxztmqy.fsf@dustycloud.org> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0005-gnu-Add-python-pytest-watch.patch List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40511@debbugs.gnu.org >From 517253fdc76d5e96ab631e08d6a230c5734f141a Mon Sep 17 00:00:00 2001 From: Christopher Lemmer Webber Date: Tue, 28 Apr 2020 15:21:36 -0400 Subject: [PATCH 05/10] gnu: Add python-pytest-watch. * gnu/packages/python-xyz.scm (python-pytest-watch): New variable. --- gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 062dfe1d2b..d9a972c456 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19716,3 +19716,29 @@ Open Sound Control 1.0} specification.") "Pytest module for selecting tests affected by changed files and methods.") (license #f))) + +(define-public python-pytest-watch + (package + (name "python-pytest-watch") + (version "4.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-watch" version)) + (sha256 + (base32 + "1fflnd3varpqy8yzcs451n8h7wmjyx1408qdin5p2qdksl1ny4q6")))) + (build-system python-build-system) + (propagated-inputs + `(("python-colorama" ,python-colorama) + ("python-docopt" ,python-docopt) + ("python-pytest" ,python-pytest) + ("python-watchdog" ,python-watchdog))) + (home-page + "http://github.com/joeyespo/pytest-watch") + (synopsis + "Local continuous test runner for pytest and watchdog") + (description + "This package provides a local continuous test runner for pytest +and watchdog.") + (license license:expat))) -- 2.26.0