From d76895a73ebd0c2d3a94476f6bf6349babcf9699 Mon Sep 17 00:00:00 2001 From: jctanner Date: Thu, 6 Jun 2024 19:14:27 -0400 Subject: [PATCH] test-playbooks: disable functional + add python-requests for docker prune. (#2159) * Need python-requests for docker prune. * Disable the the functional tests for now. No-Issue Signed-off-by: James Tanner --- .github/workflows/ci_full.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_full.yml b/.github/workflows/ci_full.yml index b34b7c74fa..9128b19b2d 100644 --- a/.github/workflows/ci_full.yml +++ b/.github/workflows/ci_full.yml @@ -88,6 +88,9 @@ jobs: - name: install ansible run: pip3 install ansible + - name: install python-requests + run: pip3 install requests + - name: run the build container playbook run: cd dev/playbooks; ANSIBLE_STDOUT_CALLBACK=yaml ansible-playbook -i 'localhost,' --forks=1 -v build_container.yaml @@ -97,5 +100,6 @@ jobs: - name: run the unit test playbook run: cd dev/playbooks; ANSIBLE_STDOUT_CALLBACK=yaml ansible-playbook -i 'localhost,' --forks=1 -v run_unit_tests.yaml - - name: run the functional test playbook - run: cd dev/playbooks; ANSIBLE_STDOUT_CALLBACK=yaml ansible-playbook -i 'localhost,' --forks=1 -v run_functional_tests.yaml + # FIXME: do we really care about these anymore ... ? + #- name: run the functional test playbook + # run: cd dev/playbooks; ANSIBLE_STDOUT_CALLBACK=yaml ansible-playbook -i 'localhost,' --forks=1 -v run_functional_tests.yaml