Add role to ensure python3 is installed on target host

Change-Id: I3b514f3a3cb1f50ac121ca9d865eb500cf49b975
This commit is contained in:
Federico Ressi
2020-03-24 12:00:47 +01:00
parent 5f01cdc90a
commit 10c1eda1fc
7 changed files with 276 additions and 2 deletions

View File

@@ -11,9 +11,9 @@ tox_command_line: >
{% if tox_envlist %} -e {{ tox_envlist | quote }} {% endif %}
{{ tox_extra_args }}
tox_python: 'python3'
tox_python: '{{ python_executable }}'
tox_report_dir: '{{ test_report_dir | realpath }}'
tox_report_name: '{{ test_report_name }}_{{ tox_envlist }}'
tox_report_name: '{{ test_report_name }}{% if tox_envlist %}_{{ tox_envlist }}{% endif %}'
tox_report_env:
TOBIKO_TEST_REPORT_DIR: '{{ tox_report_dir }}'
TOBIKO_TEST_REPORT_NAME: '{{ tox_report_name }}'

View File

@@ -2,3 +2,4 @@
dependencies:
- role: tobiko-common
- role: tobiko-ensure-python