From: Floris Bruynooghe Date: Sun, 17 Nov 2019 16:41:34 +0000 (+0100) Subject: Show which notmuch command and version is being used X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=b8cfbbaa20e8d620d1a21593595efadcef36ee66;p=notmuch-old Show which notmuch command and version is being used This add the notmuch version and absolute path of the binary used in the pytest header. This is nice when running the tests interactively as you get confirmation you're testing the version you thought you were testing. --- diff --git a/bindings/python-cffi/tests/conftest.py b/bindings/python-cffi/tests/conftest.py index aa940947..674c7218 100644 --- a/bindings/python-cffi/tests/conftest.py +++ b/bindings/python-cffi/tests/conftest.py @@ -10,6 +10,13 @@ import os import pytest +def pytest_report_header(): + vers = subprocess.run(['notmuch', '--version'], stdout=subprocess.PIPE) + which = subprocess.run(['which', 'notmuch'], stdout=subprocess.PIPE) + return ['{} ({})'.format(vers.stdout.decode(errors='replace').strip(), + which.stdout.decode(errors='replace').strip())] + + @pytest.fixture(scope='function') def tmppath(tmpdir): """The tmpdir fixture wrapped in pathlib.Path."""