From 43e6a715aecf996f49b752a4164672bbf2747222 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Sat, 21 Dec 2024 11:05:52 +1030 Subject: [PATCH] MNT: Print hostname/platform info in log, so we know what machine a test was run on --- pyfeeds/__init__.py | 2 +- pyfeeds/main.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyfeeds/__init__.py b/pyfeeds/__init__.py index ef100b9..294e66a 100644 --- a/pyfeeds/__init__.py +++ b/pyfeeds/__init__.py @@ -5,7 +5,7 @@ # Author: Paul McCarthy <pauldmccarthy@gmail.com> # -__version__ = '0.13.0' +__version__ = '0.13.1' """The pyfeeds version number. """ diff --git a/pyfeeds/main.py b/pyfeeds/main.py index 043b413..6f757fa 100755 --- a/pyfeeds/main.py +++ b/pyfeeds/main.py @@ -68,6 +68,7 @@ import logging import fnmatch import argparse import datetime +import platform import functools import configparser from collections import OrderedDict @@ -373,6 +374,7 @@ def main(argv=None): pyfeeds = Pyfeeds(args, cfg) log.info('pyfeeds %s', pyfeeds_version) + log.info(' '.join(platform.uname())) # Do that thing we were asked to do. # runTests and compareDirs return -- GitLab