Added twine check functionality to python-tarball playbook

* twine has introduced a new feature to check the README.rst so that
  the content should render fine on pypi

Change-Id: I05bceff2feafc24e93e295312cdff4bcabf00501
This commit is contained in:
Chandan Kumar 2018-09-25 20:40:11 +05:30
parent 9ae88de3e2
commit 38e40c5de7
1 changed files with 4 additions and 0 deletions

View File

@ -2,3 +2,7 @@
roles:
- check-python-release
- build-python-release
- ensure-twine
post_tasks:
- name: Run twine check on python dist tarball
command: "{{ pypi_twine_executable }} check dist/*"