mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Fix ansible-test interpreter tracking.
Track the interpreter for each copy of the injector by the interpreter path instead of the interpreter version. This avoids the possibility of mixing different interpreters with the same version.
This commit is contained in:
@@ -346,7 +346,7 @@ def command_network_integration(args):
|
||||
instances = [] # type: list [lib.thread.WrappedThread]
|
||||
|
||||
if args.platform:
|
||||
get_coverage_path(args, args.python_version, args.python_executable) # initialize before starting threads
|
||||
get_coverage_path(args, args.python_executable) # initialize before starting threads
|
||||
|
||||
configs = dict((config['platform_version'], config) for config in args.metadata.instance_config)
|
||||
|
||||
@@ -514,7 +514,7 @@ def command_windows_integration(args):
|
||||
httptester_id = None
|
||||
|
||||
if args.windows:
|
||||
get_coverage_path(args, args.python_version, args.python_executable) # initialize before starting threads
|
||||
get_coverage_path(args, args.python_executable) # initialize before starting threads
|
||||
|
||||
configs = dict((config['platform_version'], config) for config in args.metadata.instance_config)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user