From 18f983e9bb410ee91bdd1afb324c95aa7cb59ffb Mon Sep 17 00:00:00 2001 From: Maria Fernanda Magallanes Zubillaga Date: Fri, 23 Aug 2024 16:36:37 -0500 Subject: [PATCH] chore: improve integration tests --- .github/workflows/integration_test.yml | 30 ++++++++++++++------------ 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 57fb98e..2032919 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -33,20 +33,22 @@ jobs: - name: Adding data to the config.yml run: | - echo "PICASSO_MANAGE_DPKG:" | tee -a ./config.yml - echo " name: eox-manage" | tee -a ./config.yml - echo " repo: git@github.com:eduNEXT/eox-manage.git" | tee -a ./config.yml - echo " version: v5.2.0" | tee -a ./config.yml - echo "PICASSO_THEMES:" | tee -a ./config.yml - echo "- name: endx-saas-themes" | tee -a ./config.yml - echo " repo: git@github.com:eduNEXT/ednx-saas-themes.git" | tee -a ./config.yml - echo " version: master" | tee -a ./config.yml - echo "PICASSO_EXTRA_COMMANDS:" | tee -a ./config.yml - echo "- tutor plugins update" | tee -a ./config.yml - echo "- tutor plugins index add https://raw.githubusercontent.com/eduNEXT/tutor-plugin-indexes/picasso_test/" | tee -a ./config.yml - echo "- tutor plugins install mfe mfe_extensions aspects" | tee -a ./config.yml - echo "- tutor plugins enable mfe mfe_extensions aspects" | tee -a ./config.yml - echo "- tutor config save" | tee -a ./config.yml + cat <> config.yml + PICASSO_MANAGE_DPKG: + name: eox-manage + repo: git@github.com:eduNEXT/eox-manage.git + version: v5.2.0 + PICASSO_THEMES: + - name: endx-saas-themes + repo: git@github.com:eduNEXT/ednx-saas-themes.git + version: master + PICASSO_EXTRA_COMMANDS: + - tutor plugins update + - tutor plugins index add https://raw.githubusercontent.com/eduNEXT/tutor-plugin-indexes/picasso_test/ + - tutor plugins install mfe mfe_extensions aspects + - tutor plugins enable mfe mfe_extensions aspects + - tutor config save + EOF - name: Check run-extra-commands run: |