Skip to content

Commit

Permalink
fix(tests): always reinstall Ansible roles and collections
Browse files Browse the repository at this point in the history
necesseray for localdev when we update requirements.yml
  • Loading branch information
nqb committed Nov 25, 2021
1 parent c6e1ed3 commit e9ebe61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/venom/test-wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ start_and_provision_other_vm() {
run_tests() {
log_subsection "Configure VM for tests and run tests"
# install roles and collections in VENOM_ROOT_DIR
ansible-galaxy install -r ${VENOM_ROOT_DIR}/requirements.yml
ansible-galaxy install --force -r ${VENOM_ROOT_DIR}/requirements.yml
for scenario_name in ${SCENARIOS_TO_RUN}; do
scenario_path="${SCENARIOS_BASE_DIR}/${scenario_name}"
if [ -e "${scenario_path}/ansible_inventory.yml" ]; then
Expand Down

1 comment on commit e9ebe61

@nqb
Copy link
Contributor Author

@nqb nqb commented on e9ebe61 Nov 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Related to #6711

Please sign in to comment.