From 88787571fe2e4a4f9d28e97f952a3f50c37b77d2 Mon Sep 17 00:00:00 2001 From: Valerii Svydenko Date: Tue, 5 Mar 2024 17:12:34 +0200 Subject: [PATCH] fix: update ordering of commands (#27) Signed-off-by: Valeriy Svydenko --- devfile.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/devfile.yaml b/devfile.yaml index d77c835..c5a1f24 100644 --- a/devfile.yaml +++ b/devfile.yaml @@ -44,20 +44,20 @@ commands: isDefault: true component: tooling-container - - id: molecule-verify + - id: molecule-converge exec: - label: "3.Molecule: run the verification against the test pod" - commandLine: 'source $HOME/.bashrc && molecule verify' + label: "3.Molecule: apply the role to the pod" + commandLine: 'source $HOME/.bashrc && molecule converge' workingDir: ${PROJECTS_ROOT}/ansible-devspaces-demo/collections/ansible_collections/sample_namespace/sample_collection/extensions group: kind: run isDefault: true component: tooling-container - - id: molecule-converge + - id: molecule-verify exec: - label: "4.Molecule: apply the role to the pod" - commandLine: 'source $HOME/.bashrc && molecule converge' + label: "4.Molecule: run the verification against the test pod" + commandLine: 'source $HOME/.bashrc && molecule verify' workingDir: ${PROJECTS_ROOT}/ansible-devspaces-demo/collections/ansible_collections/sample_namespace/sample_collection/extensions group: kind: run