Skip to content
Snippets Groups Projects
Commit c022ed06 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Merge branch 'mnt/hostname' into 'master'

MNT: Print hostname/platform inforomation, so we know what machine a test was run on

See merge request !39
parents 6cb29e9b a135b4fa
No related branches found
No related tags found
1 merge request!39MNT: Print hostname/platform inforomation, so we know what machine a test was run on
Pipeline #26726 passed
...@@ -2,6 +2,14 @@ ...@@ -2,6 +2,14 @@
===================== =====================
0.13.1 (Saturday 21st December 2024)
------------------------------------
* Pyfeeds now prints platform information (including the host name), to make
it easier to know what system a test run was executed on.
0.13.0 (Tuesday 17th December 2024) 0.13.0 (Tuesday 17th December 2024)
----------------------------------- -----------------------------------
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
# Author: Paul McCarthy <pauldmccarthy@gmail.com> # Author: Paul McCarthy <pauldmccarthy@gmail.com>
# #
__version__ = '0.13.0' __version__ = '0.13.1'
"""The pyfeeds version number. """ """The pyfeeds version number. """
......
...@@ -68,6 +68,7 @@ import logging ...@@ -68,6 +68,7 @@ import logging
import fnmatch import fnmatch
import argparse import argparse
import datetime import datetime
import platform
import functools import functools
import configparser import configparser
from collections import OrderedDict from collections import OrderedDict
...@@ -373,6 +374,7 @@ def main(argv=None): ...@@ -373,6 +374,7 @@ def main(argv=None):
pyfeeds = Pyfeeds(args, cfg) pyfeeds = Pyfeeds(args, cfg)
log.info('pyfeeds %s', pyfeeds_version) log.info('pyfeeds %s', pyfeeds_version)
log.info(' '.join(platform.uname()))
# Do that thing we were asked to do. # Do that thing we were asked to do.
# runTests and compareDirs return # runTests and compareDirs return
......
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