Skip to content

Commit aee2a1a

Browse files
committed
Merge branch 'dev_pep8' into dev
2 parents 9c6b7a6 + 6c18dcb commit aee2a1a

File tree

173 files changed

+7191
-6834
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+7191
-6834
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
name: ${{ matrix.task.name }} - ${{ matrix.os.name }} ${{ matrix.python.name }} ${{ matrix.arch.name }}
2121
runs-on: ${{ matrix.os.runs-on }}
2222
container: ${{ matrix.os.container[matrix.python.docker] }}
23-
# present runtime seems to be about 2 minutes
24-
# with pypy being the exception (10 minutes)
23+
# present runtime seems to be about 2-4 minutes
24+
# with pypy being the exception (7 minutes)
2525
timeout-minutes: 15
2626
strategy:
2727
fail-fast: false
@@ -179,6 +179,15 @@ jobs:
179179
fail-fast: false
180180
matrix:
181181
task:
182+
- name: pylint
183+
tox: pylint
184+
# continue_on_error: true
185+
- name: codespell
186+
tox: codespell
187+
# continue_on_error: true
188+
- name: bandit
189+
tox: bandit
190+
# continue_on_error: true
182191
- name: flake8
183192
tox: flake8
184193
continue_on_error: true
@@ -258,7 +267,6 @@ jobs:
258267
run: |
259268
pip install --upgrade pip setuptools wheel
260269
pip install --upgrade tox
261-
pip install --upgrade six
262270
- uses: twisted/[email protected]
263271
- name: Download Coverage
264272
if: matrix.task.download_coverage

.isort.cfg

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Configuration settings for isort.
2+
[settings]
3+
py_version=38
4+
profile=black
5+
force_sort_within_sections = true
6+
known_first_party = doc,examples,pymodbus",test
7+
forced_separate = doc,examples,pymodbus",test
8+
combine_as_imports = true

0 commit comments

Comments
 (0)