project-config/playbooks/pti-python-tarball/check.yaml
Andreas Jaeger 53f1b26469 Remove check-python-release role
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
2018-11-08 21:37:11 +01:00

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 }}"