gnu: python2-sqlalchemy: Skip a failing test.
* gnu/packages/databases.scm (python2-sqlalchemy)[phases]{check}: Skip the test_fixture_five test.master
parent
e56ff45600
commit
ab36b88b1a
|
@ -3371,7 +3371,12 @@ simple and Pythonic domain language.")
|
||||||
(invoke "pytest" "-vv"
|
(invoke "pytest" "-vv"
|
||||||
;; The memory usage tests are very expensive and run in
|
;; The memory usage tests are very expensive and run in
|
||||||
;; sequence; skip them.
|
;; sequence; skip them.
|
||||||
"-k" "not test_memusage.py"))))))))
|
"-k"
|
||||||
|
(string-append
|
||||||
|
"not test_memusage.py"
|
||||||
|
;; This test fails with "AssertionError: Warnings
|
||||||
|
;; were not seen [...]".
|
||||||
|
" and not test_fixture_five")))))))))
|
||||||
;; Do not use pytest-xdist, which is broken for Python 2.
|
;; Do not use pytest-xdist, which is broken for Python 2.
|
||||||
(native-inputs (modify-inputs (package-native-inputs base)
|
(native-inputs (modify-inputs (package-native-inputs base)
|
||||||
(delete "python-pytest-xdist"))))))
|
(delete "python-pytest-xdist"))))))
|
||||||
|
|
Reference in New Issue