53f1b26469
The check-python-release role is still running 'setup.py check' against the repo. That command is obsolete, and should be replaced with twine. The pti-python-tarball/check.yaml playbook already runs twine, so we can just remove the role with the obsolete command to have it tested with twine. Change-Id: I99469da7b0f06656524d97d788b7440e1ed8ad4f
10 lines
247 B
YAML
10 lines
247 B
YAML
- hosts: all
|
|
roles:
|
|
- build-python-release
|
|
- ensure-twine
|
|
post_tasks:
|
|
- name: Run twine check on python dist tarball
|
|
command: "{{ pypi_twine_executable }} check dist/*"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|