diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-03-20 21:58:44 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:18 +0200 |
| commit | 474dc182b71e7729a52ea000fbf02a650f33b454 (patch) | |
| tree | cf091d547eb4828142d63ece353d014c9ae9838b /gnu/packages/python-web.scm | |
| parent | ccc67fb7758ec38b0fc62b407433f6ebb4fc6b13 (diff) | |
gnu: python-werkzeug-1.0: Do not abort on warnings.
* gnu/packages/python-web.scm (python-werkzeug-1.0)[arguments]: Remove custom
'check phase; do not raise errors when warnings are printed.
Change-Id: Ia13e63f6504e5254e35625528ad3ed8e00355528
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 28720eaed8..3e506186ac 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6537,13 +6537,13 @@ addon modules.") "0z74sa1xw5h20yin9faj0vvdbq713cgbj84klc72jr9nmpjv303c")) (patches (search-patches "python-werkzeug-tests.patch")))) (arguments - '(#:phases - (modify-phases %standard-phases - (delete 'check) - (add-after 'install 'check - (lambda* (#:key inputs outputs #:allow-other-keys) - (add-installed-pythonpath inputs outputs) - (invoke "python" "-m" "pytest")))))) + (list + #:phases + '(modify-phases %standard-phases + (add-after 'unpack 'ignore-warnings + (lambda _ + (substitute* "setup.cfg" + ((" error.*") ""))))))) (propagated-inputs (list python-requests)) (native-inputs |
