Install Pygments before checking README syntax for publish jobs

Story: 2004094
Task: 27496

Change-Id: I4f2ea50bdc86a50da2c5d331d6d84fe430d710ce
Signed-off-by: Graham Hayes <gr@ham.ie>
This commit is contained in:
Graham Hayes 2018-10-16 16:25:22 +01:00
parent 6f32c131c3
commit 5a1fe80d6b
No known key found for this signature in database
GPG Key ID: 1B263DC59F4AEFD5
1 changed files with 8 additions and 0 deletions

View File

@ -8,6 +8,14 @@
virtualenv: "{{ check_python_release_virtualenv }}"
virtualenv_python: "{{ release_python }}"
chdir: "{{ zuul_work_dir }}"
# Pygments needs to be installed to allow the metadata and README
# check parse project READMEs that have code blocks in the
# README.rst file.
pip:
name: Pygments
virtualenv: "{{ check_python_release_virtualenv }}"
virtualenv_python: "{{ release_python }}"
chdir: "{{ zuul_work_dir }}"
- name: Check the package metadata and README format
command: "{{ check_python_release_virtualenv }}/bin/{{ release_python }} setup.py check --restructuredtext --strict"