diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-19 02:38:37 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-20 15:01:50 +0000 |
| commit | bb87f0af63c64e02f151a50e15eecdca0a303585 (patch) | |
| tree | 8f387e1e742c9fe6061230b6d46b3be3e8986e02 /gnu | |
| parent | c0d7989466ca398d71f4bfa74cf5bd45c9429b32 (diff) | |
gnu: python-flask-sqlalchemy: Ignore warnings.
* gnu/packages/python-web.scm (python-flask-sqlalchemy)[arguments]
<#:test-flags>: Ignore deprecation warnings.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-web.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9d9e344484f..866b0bbc1fa 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -8085,7 +8085,8 @@ S3.") (list #:test-flags #~(list "-k" (string-append "not test_explicit_table[db2]" - " and not test_explicit_table[db4]")))) + " and not test_explicit_table[db4]") + "-W" "ignore::DeprecationWarning"))) (native-inputs (list python-flit-core python-pytest)) |
