diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-01-14 14:12:06 +0800 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:51 +0100 |
commit | 91a66a7e6944bcd5280b974d7b741d3c93a50769 (patch) | |
tree | cbdaa1a7fa85cf9a592b2a6cafbc315f67853618 | |
parent | a78798b7368f56a3002e51876b475929bb3b00bd (diff) |
gnu: python-scripttest: Disable tests.
* gnu/packages/check.scm (python-scripttest)[arguments]: Disable tests.
Change-Id: I941551e2ef18b9669e43353be8a87a71009767e0
-rw-r--r-- | gnu/packages/check.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index fc8aa34298..11cdf89504 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2185,6 +2185,9 @@ side-effects (such as setting environment variables).") (build-system python-build-system) (native-inputs (list python-pytest)) + (arguments + ;; Tests not shipped with PyPI archive, and require TLS CA cert. + (list #:tests? #f)) (home-page (string-append "https://web.archive.org/web/20161029233413/" "http://pythonpaste.org/scripttest/")) (synopsis "Python library to test command-line scripts") |