We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7774e0a commit 4273316Copy full SHA for 4273316
.github/workflows/package-verification.yml
@@ -27,13 +27,16 @@ jobs:
27
- name: Install dependencies
28
run: |
29
python -m pip install --upgrade pip
30
- python -m pip install flake8 flake8-pyproject ruff
+ python -m pip install flake8 flake8-pyproject ruff black
31
- name: Lint with flake8
32
33
flake8 .
34
- name: Lint with ruff
35
36
ruff check .
37
+ - name: Check with black
38
+ run: |
39
+ black --check .
40
41
test:
42
runs-on: ubuntu-latest
tests/units/exceptions/Exception/test_set001__research.py
@@ -1,5 +1,3 @@
1
-
2
3
class TestSet002__usage:
4
def test_000__research(self):
5
e = Exception("a\n1")
0 commit comments