me
/
guix
Archived
1
0
Fork 0

gnu: python-django: Support '--without-tests'.

* gnu/packages/django.scm (python-django)[arguments]: Test for TESTS? in the
'check' phase.
master
Marius Bakke 2021-05-05 21:21:03 +02:00
parent 4ae8390ffc
commit e355222382
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 12 additions and 10 deletions

View File

@ -6,7 +6,7 @@
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
;;; Copyright © 2019 Sam <smbaines8@gmail.com>
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
;;; Copyright © 2020, 2021 Marius Bakke <marius@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@ -87,7 +87,8 @@
#t))
(replace 'check
(lambda _
(lambda* (#:key tests? #:allow-other-keys)
(if tests?
(with-directory-excursion "tests"
(setenv "PYTHONPATH"
(string-append "..:" (getenv "PYTHONPATH")))
@ -95,7 +96,8 @@
;; By default tests run in parallel, which may cause
;; various race conditions. Run sequentially for
;; consistent results.
"--parallel=1")))))))
"--parallel=1"))
(format #t "test suite not run~%")))))))
;; TODO: Install extras/django_bash_completion.
(native-inputs
`(("tzdata" ,tzdata-for-tests)