Fix integration tests to support remote hosts.

This commit is contained in:
Matt Clay 2019-01-24 19:25:06 -08:00
commit d2a7cc0b9f
37 changed files with 321 additions and 225 deletions

View file

@ -0,0 +1 @@
needs/file/test/runner/requirements/constraints.txt

View file

@ -0,0 +1,2 @@
dependencies:
- setup_remote_tmp_dir

View file

@ -0,0 +1,8 @@
- name: record constraints.txt path on remote host
set_fact:
remote_constraints: "{{ remote_tmp_dir }}/constraints.txt"
- name: copy constraints.txt to remote host
copy:
src: "{{ role_path }}/../../../runner/requirements/constraints.txt"
dest: "{{ remote_constraints }}"