We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 106422b commit 91826d4Copy full SHA for 91826d4
1 file changed
azure-pipelines.yml
@@ -11,6 +11,15 @@ jobs:
11
make && ./tester
12
displayName: Run unit tests
13
14
+ - job: python_format
15
+ pool: { vmImage: "ubuntu-latest" }
16
+ steps:
17
+ - task: UsePythonVersion@0
18
+ - script: |
19
+ pip install black==19.10b0
20
+ black --check python/
21
+ displayName: Check Python code format
22
+
23
- job: linux
24
pool: {vmImage: "Ubuntu-16.04"}
25
steps:
@@ -24,10 +33,6 @@ jobs:
33
cibuildwheel --output-dir wheelhouse .
34
- task: PublishBuildArtifacts@1
26
35
inputs: {pathtoPublish: 'python/wheelhouse'}
27
- - script: |
28
- pip install black==19.10b0
29
- black --check python/
30
- displayName: Check Python code format
31
36
32
37
- job: macos
38
pool: {vmImage: 'macOS-10.13'}
0 commit comments