Skip to content
Snippets Groups Projects
Commit d98c4b05 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Drop printing out dpkg-query output when running tests; it is rather noisy and...

Drop printing out dpkg-query output when running tests; it is rather noisy and has not helped (yet) in reproducing an error.
parent 7bf992bf
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,6 @@
# along with diffoscope. If not, see <https://www.gnu.org/licenses/>.
import pytest
import subprocess
from diffoscope.path import set_path
from diffoscope.locale import set_locale
......@@ -48,17 +47,3 @@ def reload_comparators():
@pytest.fixture(autouse=True)
def reset_progress():
ProgressManager().reset()
def pytest_report_header(config):
if config.option.verbose == 0:
return
try:
return ["", "Installed Debian packages:", "", subprocess.check_output((
'dpkg-query',
'-W',
'-f', '${db:Status-Abbrev}\t${binary:Package} (${Version})\n'
)).decode('utf-8')]
except:
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment