me
/
guix
Archived
1
0
Fork 0

gnu: python-aiohttp: Do not set PYTHONPATH.

* gnu/packages/python-web.scm (python-aiohttp)
[phases]{check}: Do not set PYTHONPATH.
master
Maxim Cournoyer 2021-01-24 14:09:40 -05:00
parent 905b1b1081
commit 6bef08bb81
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 2 additions and 5 deletions

View File

@ -26,7 +26,7 @@
;;; Copyright © 2018 Tomáš Čech <sleep_walker@gnu.org> ;;; Copyright © 2018 Tomáš Čech <sleep_walker@gnu.org>
;;; Copyright © 2018, 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2018, 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2018, 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2018, 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org> ;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
;;; Copyright © 2019 Brendan Tildesley <mail@brendan.scot> ;;; Copyright © 2019 Brendan Tildesley <mail@brendan.scot>
;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
@ -122,12 +122,9 @@
(string-append "@pytest.mark.xfail\n" all))) (string-append "@pytest.mark.xfail\n" all)))
;; Don't test the aiohttp pytest plugin to avoid a dependency loop. ;; Don't test the aiohttp pytest plugin to avoid a dependency loop.
(delete-file "tests/test_pytest_plugin.py") (delete-file "tests/test_pytest_plugin.py")))
#t))
(replace 'check (replace 'check
(lambda* (#:key tests? #:allow-other-keys) (lambda* (#:key tests? #:allow-other-keys)
(setenv "PYTHONPATH"
(string-append ".:" (getenv "PYTHONPATH")))
(if tests? (if tests?
(invoke "pytest" "-vv" (invoke "pytest" "-vv"
;; Disable loading the aiohttp coverage plugin ;; Disable loading the aiohttp coverage plugin