003a9e890d
The recent update of ptyprocess to 0.7.0 is incompatible with Python 2.6 and is causing test failures. * Add setup_pexpect role to expect test
10 lines
267 B
YAML
10 lines
267 B
YAML
- name: Copy constraints file
|
|
copy:
|
|
src: constraints.txt
|
|
dest: "{{ remote_tmp_dir }}/pexpect-constraints.txt"
|
|
|
|
- name: Install pexpect
|
|
pip:
|
|
name: pexpect
|
|
extra_args: '--constraint "{{ remote_tmp_dir }}/pexpect-constraints.txt"'
|
|
state: present
|