apteryx pushed a commit to branch cu/farewell-to-pythonpath in repository guix.
commit 5d2c7774b8ae769bcaa7d285267bc0b0b3fdcb8c Author: Maxim Cournoyer <[email protected]> AuthorDate: Sun Jan 24 14:09:40 2021 -0500 gnu: python-aiohttp: Do not set PYTHONPATH. * gnu/packages/python-web.scm (python-aiohttp) [phases]{check}: Do not set PYTHONPATH. --- gnu/packages/python-web.scm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 7ba073d..e856c46 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -26,7 +26,7 @@ ;;; Copyright © 2018 Tomáš Čech <[email protected]> ;;; Copyright © 2018, 2019 Nicolas Goaziou <[email protected]> ;;; Copyright © 2018 Mathieu Othacehe <[email protected]> -;;; Copyright © 2018, 2020 Maxim Cournoyer <[email protected]> +;;; Copyright © 2018, 2020, 2021 Maxim Cournoyer <[email protected]> ;;; Copyright © 2019 Vagrant Cascadian <[email protected]> ;;; Copyright © 2019 Brendan Tildesley <[email protected]> ;;; Copyright © 2019 Pierre Langlois <[email protected]> @@ -122,12 +122,9 @@ (string-append "@pytest.mark.xfail\n" all))) ;; Don't test the aiohttp pytest plugin to avoid a dependency loop. - (delete-file "tests/test_pytest_plugin.py") - #t)) + (delete-file "tests/test_pytest_plugin.py"))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) - (setenv "PYTHONPATH" - (string-append ".:" (getenv "PYTHONPATH"))) (if tests? (invoke "pytest" "-vv" ;; Disable loading the aiohttp coverage plugin
