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 fc40f5c commit 46fd681Copy full SHA for 46fd681
.github/workflows/tests.yaml
@@ -25,9 +25,9 @@ jobs:
25
- name: Install dependencies
26
run: |
27
python -m pip install --upgrade pip
28
- pip install black
+ pip install black==20.8b1
29
pip install -r requirements-test.txt
30
- name: Lint with black
31
- run: python -m black --check .
+ run: python -m black --check . --config=.black.toml
32
- name: Test with pytest
33
run: pytest --cov=reusables
.pre-commit-config.yaml
@@ -10,7 +10,7 @@ repos:
10
- id: debug-statements
11
- id: check-yaml
12
- repo: https://github.com/ambv/black
13
- rev: stable
+ rev: 20.8b1
14
hooks:
15
- id: black
16
args: [--config=.black.toml]
0 commit comments