diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 51a38bbcbe..69663f67e9 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -18,6 +18,7 @@ ;;; Copyright © 2022 Tomasz Jeneralczyk ;;; Copyright © 2022 jgart ;;; Copyright © 2024 Troy Figiel +;;; Copyright © 2024 Navid Afkhami ;;; ;;; This file is part of GNU Guix. ;;; @@ -1093,6 +1094,28 @@ (define-public python-re-assert simpler.") (license license:expat))) +(define-public python-pytest-testmon + (package + (name "python-pytest-testmon") + (version "2.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tarpas/pytest-testmon") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01qhbkb3n8c5c4id94w6b06q9wb7b6a33mqwyrkdfzk5pzv1gcyd")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #false)) ;there are none + (native-inputs (list python-coverage python-pytest)) + (home-page "https://github.com/tarpas/pytest-testmon") + (synopsis "Selects tests affected by changed files and methods") + (description + "This plug-in auto-selects and reruns tests impacted by recent changes.") + (license license:expat))) + (define-public python-pytest-trio (package (name "python-pytest-trio")