File tree Expand file tree Collapse file tree 2 files changed +13
-8
lines changed
Expand file tree Collapse file tree 2 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 22max-line-length = 120
33extend-ignore = E203
44per-file-ignores =
5- tests/test_imports.py:F401
5+ tests/test_imports.py:F401
Original file line number Diff line number Diff line change @@ -30,18 +30,23 @@ jobs:
3030 - name : Install dependencies
3131 run : |
3232 pip install -r requirements.txt
33- pip install pytest ecos black isort flake8
33+ pip install pytest ecos black
3434 # isort black flake8
3535 # pip install ecos
3636 - name : Test with pytest
3737 run : |
3838 pytest ./tests
39- - name : Check with isort
40- run : |
41- isort --check --diff .
39+
40+
41+ # isort is replaced by ruff
42+ # - name: Check with isort
43+ # run: |
44+ # isort --check --diff .
4245 - name : Check with black
4346 run : |
4447 black --check --diff .
45- - name : Check with flake8
46- run : |
47- flake8 --show-source --statistics .
48+
49+ # flake8 is replaced by ruff
50+ # - name: Check with flake8
51+ # run: |
52+ # flake8 --show-source --statistics .
You can’t perform that action at this time.
0 commit comments