configure_interfaces_in_cml: stage: test image: python:3.13 needs: ["deploy_cml"] variables: ANSIBLE_HOST_KEY_CHECKING: "False" ANSIBLE_PARAMIKO_HOST_KEY_AUTO_ADD: "True" before_script: - pip install ansible[all] paramiko script: - echo "Configuring interfaces in CML lab..." - ansible-playbook manage_interfaces.yml -i $TEST_DIR/inventory.yml verify_interfaces_connectivity_in_cml: stage: test image: python:3.13 needs: ["configure_interfaces_in_cml"] before_script: - pip install pyats[full] script: - echo "Verifying interface connectivity in CML lab..." - python3 verify_interfaces_connectivity.py interfaces.csv $TEST_DIR/testbed.yml