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 fa5652d commit c7bc254Copy full SHA for c7bc254
.github/workflows/black.yml
@@ -9,5 +9,5 @@ jobs:
9
- uses: actions/checkout@v2
10
- uses: psf/black@stable
11
with:
12
- options: "--check --verbose"
+ options: "--diff"
13
src: "."
azure-pipelines.yml
@@ -31,11 +31,8 @@ jobs:
31
ruff .
32
displayName: 'Ruff'
33
- script: |
34
- black --verbose --check onnx_array_api
35
- displayName: 'Black source'
36
- - script: |
37
- black --verbose --check _unittests
38
- displayName: 'Black test'
+ black --diff .
+ displayName: 'Black'
39
40
python -m pytest -v
41
displayName: 'Runs Unit Tests'
0 commit comments