Fixes the errors with use of asyncio in docrepr/tests/test_output.py: > await compare_screenshots(test_id, url) E TypeError: 'coroutine' object is not callable --- a/conftest.py +++ b/conftest.py @@ -65,7 +65,7 @@ def _open_browser(url): @pytest.fixture -async def compare_screenshots(request): +def compare_screenshots(request): """Run visual regression test on the output.""" async def _compare_screenshots(test_id, url): if (request.config.getoption(COMPARE_SCREENSHOTS_OPTION) or ref='/'>index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-pack-localstatedir.sh
AgeCommit message (Expand)Author
2019-05-18pack: '--localstatedir' and '-R' tests gracefully handle missing /gnu/store....Fixes <https://bugs.gnu.org/35776>. Reported by Ting-Wei Lan <lantw44@gmail.com>. * tests/guix-pack-localstatedir.sh: Set 'storedir' before 'NIX_STORE_DIR'. * tests/guix-pack-relocatable.sh: Likewise. Ludovic Courtès
2018-11-23pack: Add '--profile-name'....* guix/scripts/pack.scm (self-contained-tarball): Add #:profile-name and honor it. (squashfs-image, docker-image): Add #:profile-name. (%default-options): Add 'profile-name'. (%options, show-help): Add "--profile-name". (guix-pack): Honor it. * tests/guix-pack-localstatedir.sh: New file. * Makefile.am (SH_TESTS): Add it. * doc/guix.texi (Invoking guix pack): Document "--profile-name". Ludovic Courtès