Skip to content
Merged
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
13 changes: 9 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ jobs:
make && ./tester
displayName: Run unit tests

- job: python_format
pool: { vmImage: "ubuntu-latest" }
steps:
- task: UsePythonVersion@0
- script: |
pip install black==19.10b0
black --check python/
displayName: Check Python code format

- job: linux
pool: {vmImage: "Ubuntu-16.04"}
steps:
Expand All @@ -24,10 +33,6 @@ jobs:
cibuildwheel --output-dir wheelhouse .
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'python/wheelhouse'}
- script: |
pip install black==19.10b0
black --check python/
displayName: Check Python code format

- job: macos
pool: {vmImage: 'macOS-10.13'}
Expand Down