Inform on which python version we are running on

This commit is contained in:
Pedro Algarvio 2017-02-09 18:03:20 +00:00
parent b264114901
commit b82bf6bebf
No known key found for this signature in database
GPG key ID: BB36BF6584A298FF

View file

@ -8,6 +8,7 @@ Discover all instances of unittest.TestCase in this directory.
# Import python libs
from __future__ import absolute_import, print_function
import os
import sys
import time
# Import salt libs
@ -386,6 +387,9 @@ class SaltTestsuiteParser(SaltCoverageTestingParser):
source=[os.path.join(SALT_ROOT, 'salt')],
)
# Print out which version of python this test suite is running on
print(' * Python Version: {0}'.format(' '.join(sys.version.split())))
# Transplant configuration
TestDaemon.transplant_configs(transport=self.options.transport)