Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
fix: update ordering of commands
Browse files Browse the repository at this point in the history
Signed-off-by: Valeriy Svydenko <[email protected]>
  • Loading branch information
svor committed Mar 4, 2024
1 parent 251e9fa commit fad8472
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fad8472

Please sign in to comment.