File tree Expand file tree Collapse file tree 3 files changed +31
-4
lines changed Expand file tree Collapse file tree 3 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 65
65
toxpython : ' python3.6'
66
66
python_arch : ' x64'
67
67
tox_env : ' py36-pytest70-xdist250-coverage62'
68
- os : ' ubuntu-latest '
68
+ os : ' ubuntu-20.04 '
69
69
- name : ' py36-pytest70-xdist250-coverage62 (windows)'
70
70
python : ' 3.6'
71
71
toxpython : ' python3.6'
Original file line number Diff line number Diff line change
1
+ # [tool.ruff] # <- TODO Uncomment when migrating to pyproject.toml
2
+ exclude = [
3
+ " .eggs" ,
4
+ " .tox" ,
5
+ " build" ,
6
+ " ci/templates" ,
7
+ " dist" ,
8
+ ]
9
+ line-length = 140
10
+ select = [
11
+ " E" ,
12
+ " F" ,
13
+ " I" ,
14
+ " PLC" ,
15
+ " PLE" ,
16
+ " UP" ,
17
+ " W" ,
18
+ ]
19
+ target-version = " py37"
20
+
21
+ # [tool.ruff.isort] # <- TODO Uncomment when migrating to pyproject.toml
22
+ [isort ]
23
+ # default-section = "THIRDPARTY"
24
+ force-single-line = true
25
+ forced-separate = [" test_pytest_cov" ]
26
+ known-first-party = [" pytest_cov" ]
Original file line number Diff line number Diff line change @@ -87,12 +87,13 @@ commands =
87
87
88
88
[testenv:check]
89
89
deps =
90
- docutils
91
90
check-manifest
91
+ colorama # TODO Remove when isort > v6.0.0b2 is released.
92
+ docutils
92
93
flake8
93
- readme-renderer
94
- pygments
95
94
isort
95
+ pygments
96
+ readme-renderer
96
97
skip_install = true
97
98
usedevelop = false
98
99
commands =
You can’t perform that action at this time.
0 commit comments