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

MNT: Print hostname/platform info in log, so we know what machine a test was

run on
parent 6cb29e9b
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
......@@ -5,7 +5,7 @@
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
__version__ = '0.13.0'
__version__ = '0.13.1'
"""The pyfeeds version number. """
......
......@@ -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
......
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