diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-26 21:05:29 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:44 +0100 |
| commit | a2c8386f35948c35687c0d903e1af4ff7937064e (patch) | |
| tree | 23f2ae5bbff9eb781d3e28b97025477b13e7cddd | |
| parent | dbc017347834914fdff965d24a21b145bbd63a5c (diff) | |
gnu: Remove python-coverage-test-runner.
* gnu/packages/check.scm (python-coverage-test-runner): Delete variable.
Fixes: guix/guxi#5136
Change-Id: I6413c28a5206efbfd53a5726a59226e10a2bd0c1
| -rw-r--r-- | gnu/packages/check.scm | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 5dbab9a1e94..ba237145a3b 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2962,36 +2962,6 @@ each of the environments.") (description "Pytest plugin for checking Python source code with pyflakes.") (license license:expat))) -(define-public python-coverage-test-runner - (package - (name "python-coverage-test-runner") - (version "1.15") - (source - (origin - (method url-fetch) - (uri (string-append - "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/" - "coverage-test-runner/snapshot/coverage-test-runner-" - version ".tar.gz")) - (sha256 - (base32 - "1kjjb9llckycnfxag8zcvqsn4z1s3dwyw6b1n0avxydihgf30rny")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "./testrun")))))) - (propagated-inputs - (list python-coverage)) - (home-page "https://liw.fi/coverage-test-runner/") - (synopsis "Python module for running unit tests") - (description "@code{CoverageTestRunner} is a python module for running -unit tests and failing them if the unit test module does not exercise all -statements in the module it tests.") - (license license:gpl3+))) - (define-public python-pylint (package (name "python-pylint") |
