Skip to content
Snippets Groups Projects
Commit 37b422f3 authored by Benjamin Bertrand's avatar Benjamin Bertrand
Browse files

Update default conda version to 4.6.11

parent 65cf9927
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ Ansible role to install conda on CentOS. ...@@ -10,7 +10,7 @@ Ansible role to install conda on CentOS.
## Role Variables ## Role Variables
```yaml ```yaml
conda_version: 4.5.12 conda_version: 4.6.11
# List of conda environment yaml files to create # List of conda environment yaml files to create
conda_env_files: [] conda_env_files: []
``` ```
......
--- ---
conda_version: 4.5.12 conda_version: 4.6.11
# List of conda environment yaml files to create # List of conda environment yaml files to create
conda_env_files: [] conda_env_files: []
...@@ -8,7 +8,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( ...@@ -8,7 +8,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
def test_conda_version(host): def test_conda_version(host):
cmd = host.run('/opt/conda/bin/conda --version 2>&1') cmd = host.run('/opt/conda/bin/conda --version 2>&1')
assert cmd.rc == 0 assert cmd.rc == 0
assert cmd.stdout.strip() == 'conda 4.5.12' assert cmd.stdout.strip() == 'conda 4.6.11'
def test_conda_path(host): def test_conda_path(host):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment