We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8342dfb commit fa5652dCopy full SHA for fa5652d
azure-pipelines.yml
@@ -31,8 +31,11 @@ jobs:
31
ruff .
32
displayName: 'Ruff'
33
- script: |
34
- black --verbose --check .
35
- displayName: 'Black'
+ black --verbose --check onnx_array_api
+ displayName: 'Black source'
36
+ - script: |
37
+ black --verbose --check _unittests
38
+ displayName: 'Black test'
39
40
python -m pytest -v
41
displayName: 'Runs Unit Tests'
@@ -73,9 +76,6 @@ jobs:
73
76
74
77
python -u setup.py bdist_wheel
75
78
displayName: 'Build Package'
- - script: |
- python -m sphinx _doc dist/html
- displayName: 'Builds Documentation'
79
- task: PublishPipelineArtifact@0
80
inputs:
81
artifactName: 'wheel-linux-$(python.version)'
0 commit comments