Skip to content

Commit 8668c9a

Browse files
intermediate changes
ref:9022476 sync: https://proxy.sandbox.yandex-team.ru/2693348486
1 parent ff478f0 commit 8668c9a

File tree

22 files changed

+88
-2926
lines changed

22 files changed

+88
-2926
lines changed

.github/workflows/main.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Python package
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
max-parallel: 4
10+
matrix:
11+
python-version: [3.8]
12+
environment: [style, black, py38, py38-tls]
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Set up Python ${{ matrix.python-version }}
17+
uses: actions/setup-python@v2
18+
with:
19+
python-version: ${{ matrix.python-version }}
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install tox
24+
- name: Test with tox
25+
run: tox -e ${{ matrix.environment }}

.pylintrc

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
[MASTER]
2+
3+
load-plugins=pylint_protobuf
4+
5+
[VARIABLES]
6+
7+
dummy-variables-rgx=^ignored_|^unused_|_
8+
9+
[DESIGN]
10+
11+
max-args=14
12+
max-parents=8
13+
14+
[FORMAT]
15+
16+
max-line-length=160
17+
18+
[MISCELLANEOUS]
19+
20+
notes=FIXME
21+
22+
[MESSAGES CONTROL]
23+
24+
disable=
25+
cyclic-import,
26+
duplicate-code,
27+
import-error,
28+
invalid-name,
29+
locally-disabled,
30+
locally-enabled,
31+
missing-docstring,
32+
misplaced-comparison-constant,
33+
no-init,
34+
no-name-in-module,
35+
protected-access,
36+
37+
too-few-public-methods,
38+
too-many-instance-attributes,
39+
too-many-lines,
40+
too-many-nested-blocks,
41+
too-many-locals,
42+
too-many-ancestors,
43+
too-many-return-statements,
44+
too-many-branches,
45+
too-many-statements,
46+
too-many-arguments,
47+
too-many-public-methods,
48+
49+
super-init-not-called,
50+
useless-else-on-loop,
51+
no-else-return,
52+
useless-object-inheritance,
53+
wrong-import-order,
54+
bad-continuation,
55+
invalid-overridden-method,
56+
consider-using-f-string,
57+
raise-missing-from,
58+
59+
broad-except,
60+
unnecessary-pass,
61+
unused-argument,
62+
super-with-arguments,
63+
abstract-method

client/__init__.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

client/frameworks/__init__.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

iam/__init__.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

persqueue/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)