diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-04 21:32:22 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:35 +0100 |
commit | 52aafe952249bf086efa359c0a6c0288f0ab07ef (patch) | |
tree | 3e449a4e93990067c981873d5f8c50fbe0906f86 | |
parent | 73058a625058948f75a89fb355348262706e1626 (diff) |
gnu: python-starsessions: Disable one more test.
* gnu/packages/python-web.scm (python-starsessions)[arguments]: Disable one
more test.
Change-Id: I9a10805eb73f829f12f2b41d1d25b6c41693c9ef
-rw-r--r-- | gnu/packages/python-web.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index e093152793..b8b1d33b26 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -9795,7 +9795,10 @@ Interface) framework/toolkit for building async web services in Python.") ;; it seems restricted to the tests only. ;; AttributeError: 'Cookies' object has no attribute ;; 'clear_session_cookies' - "-k" "not test_session_clears_on_tab_close") + "-k" + (string-append "not test_session_clears_on_tab_close" + ;; This fails because an error is not raised. + " and not test_session_wants_secret_key")) #:phases '(modify-phases %standard-phases (add-after 'unpack 'compatibilitiy |