Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
vmImage: 'ubuntu-18.04'
strategy:
matrix:
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
RUN_COVERAGE: yes
Python36:
python.version: '3.6'
Expand Down Expand Up @@ -67,3 +67,10 @@ jobs:

- script: rst2html.py --halt=2 README.rst >/dev/null
displayName: 'rst2html'

- script: |
pip install setuptools twine pytoml wheel
pip install .
python setup.py sdist bdist_wheel
twine check dist/*
displayName: 'Twine check'