mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: python-flake8-2.2.4: Disable tests.
* gnu/packages/python.scm (python-flake8-2.2.4, python2-flake8-2.2.4)[arguments]: Set #:tests? #f.
This commit is contained in:
parent
73e3060d57
commit
a717e8a698
1 changed files with 4 additions and 1 deletions
|
@ -5795,7 +5795,10 @@ (define-public python-flake8-2.2.4
|
||||||
(for-each delete-file-recursively
|
(for-each delete-file-recursively
|
||||||
(find-files "." "__pycache__" #:directories? #t))
|
(find-files "." "__pycache__" #:directories? #t))
|
||||||
(for-each delete-file (find-files "." "\\.pyc$"))
|
(for-each delete-file (find-files "." "\\.pyc$"))
|
||||||
#t))))))
|
#t))))
|
||||||
|
(arguments
|
||||||
|
;; XXX Fails with Python 3.5.
|
||||||
|
'(#:tests? #f))))
|
||||||
|
|
||||||
(define-public python2-flake8-2.2.4
|
(define-public python2-flake8-2.2.4
|
||||||
(package-with-python2 python-flake8-2.2.4))
|
(package-with-python2 python-flake8-2.2.4))
|
||||||
|
|
Loading…
Reference in a new issue