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 9b83499 commit 0d20af2Copy full SHA for 0d20af2
.github/workflows/ci.yml
@@ -22,16 +22,17 @@ jobs:
22
run: |
23
python -m pip install --upgrade pip
24
pip install -r requirements.txt
25
- pip install pytest black flake8
+ pip install pytest black[jupyter] flake8
26
27
- name: Run tests
28
29
python -m pytest tests/
30
31
- name: Check formatting
32
+ continue-on-error: true
33
- black . --check
34
-
+ echo "Checking code formatting..."
35
+ black --check --diff .
36
- name: Check linting
37
38
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
@@ -54,4 +55,4 @@ jobs:
54
55
56
57
pip install build
- python -m build
58
+ python -m build
0 commit comments