mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: fenics: Do not mpirun tests.
* gnu/packages/simulation.scm (fenics)[phases]: Do not use mpirun for tests and skip failing XDMF test. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
ae0c11f920
commit
b13966a907
1 changed files with 7 additions and 9 deletions
|
@ -665,15 +665,13 @@ (define-public fenics
|
|||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(with-directory-excursion "test"
|
||||
;; Note: The test test_snes_set_from_options() in the file
|
||||
;; unit/nls/test_PETScSNES_solver.py fails and is ignored.
|
||||
;; Limit the number of jobs to 3 as 500 MiB of memory is used
|
||||
;; per process.
|
||||
(invoke "mpirun" "-np" (number->string
|
||||
(min 3 (parallel-job-count)))
|
||||
"python" "-B" "-m"
|
||||
"pytest" "unit" "--ignore"
|
||||
"unit/nls/test_PETScSNES_solver.py")))))
|
||||
(invoke
|
||||
"pytest" "unit"
|
||||
;; The test test_snes_set_from_options() in the file
|
||||
;; unit/nls/test_PETScSNES_solver.py fails and is ignored.
|
||||
"--ignore" "unit/nls/test_PETScSNES_solver.py"
|
||||
;; Fails with a segfault.
|
||||
"--ignore" "unit/io/test_XDMF.py")))))
|
||||
(add-after 'install 'install-demo-files
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((demos (string-append
|
||||
|
|
Loading…
Reference in a new issue