mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Inform on which python version we are running on
This commit is contained in:
parent
b264114901
commit
b82bf6bebf
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue