Skip to content

Commit 86eb485

Browse files
tbr
Signed-off-by: rohitthakur2590 <[email protected]>
1 parent 1d61f2a commit 86eb485

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

test/lib/ansible_test/_internal/commands/integration/network.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
NetworkInventoryConfig,
3838
NetworkRemoteConfig,
3939
)
40+
import q
4041

4142

4243
def command_network_integration(args: NetworkIntegrationConfig) -> None:
@@ -68,7 +69,9 @@ def command_network_integration(args: NetworkIntegrationConfig) -> None:
6869
'Use --platform to provision resources and generate an inventory file.\n'
6970
'See also inventory template: %s' % (inventory_path, template_path)
7071
)
71-
72+
q("===========================================================================")
73+
q(args)
74+
q(inventory_path)
7275
check_inventory(args, inventory_path)
7376
delegate_inventory(args, inventory_path)
7477

test/lib/ansible_test/_internal/inventory.py

+3
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ def create_windows_inventory(args: EnvironmentConfig, path: str, target_hosts: l
8585
def create_network_inventory(args: EnvironmentConfig, path: str, target_hosts: list[HostProfile]) -> None:
8686
"""Create and return inventory for use in target network integration tests."""
8787
first = target_hosts[0]
88+
import q
89+
q("Inside Inventory")
90+
q(path)
8891

8992
if isinstance(first, NetworkInventoryProfile):
9093
if args.explain:

0 commit comments

Comments
 (0)