You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
533 B
YAML
22 lines
533 B
YAML
# Ensure paramiko connections aren't grabbed.
|
|
---
|
|
|
|
- name: integration/connection_loader/paramiko_unblemished.yml
|
|
hosts: test-targets
|
|
tasks:
|
|
- debug:
|
|
msg: "skipped for now"
|
|
- name: this is flaky -> https://github.com/dw/mitogen/issues/747
|
|
block:
|
|
- custom_python_detect_environment:
|
|
connection: paramiko
|
|
register: out
|
|
|
|
- assert:
|
|
that: not out.mitogen_loaded
|
|
fail_msg: out={{out}}
|
|
when: False
|
|
tags:
|
|
- paramiko
|
|
- paramiko_unblemished
|