File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 25
25
suffix : sct-repo
26
26
register : repo_tmpdir
27
27
28
- - debug : var=repo_tmpdir
29
-
30
28
- name : Create a temporary directory for results
31
29
ansible.builtin.tempfile :
32
30
state : directory
74
72
/usr/bin/pwd
75
73
register : debug_working_dir
76
74
77
- - debug : var=debug_working_dir
75
+ # REMOVE!!
76
+ # Why does the runner fail to find the tests???
77
+ - name : Capture contents of the SCT repo
78
+ ansible.builtin.find :
79
+ path : " {{ repo_tmpdir.path }}"
80
+ file_type : " directory"
81
+ recurse : true
82
+ excludes : " {{ repo_tmpdir.path }}/.git"
83
+ register : contents
84
+ - name : Print the contents of the SCT repo
85
+ debug :
86
+ msg : " {{ item.path }}"
87
+ with_items :
88
+ - " {{ contents.files }}"
89
+ loop_control :
90
+ label : " {{ item.path }}"
78
91
79
92
# Monitoring tests should run once, executed on the host in the
80
93
# tempest_runner group.
You can’t perform that action at this time.
0 commit comments