File: setup.cfg

package info (click to toggle)
python-jaeger-client 4.8.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 920 kB
  • sloc: python: 5,656; makefile: 93; sh: 26; awk: 16
file content (35 lines) | stat: -rw-r--r-- 690 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[flake8]
ignore = D100,D101,D102,D103,D104,D105,D203,D204,D205,D400
max-line-length = 100
exclude =
  jaeger_client/thrift_gen/*,
  crossdock/thrift_gen/*
min_python_version = 3.7.0

[zest.releaser]
release = no
history_file = CHANGELOG.rst
python-file-with-version = jaeger_client/__init__.py

[tool:pytest]
timeout = 60
norecursedirs =
    .git
    .tox
    dist
    build
python_files =
    test_*.py
    *_test.py
    tests.py

[mypy]
python_version = 3.7
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
pretty = True
show_error_codes = True

[mypy-six.*,tornado.*,opentracing.*,thrift.*,threadloop.*,prometheus_client.*]
ignore_missing_imports = True