FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
client_python/tox.ini at master · prometheus/client_python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
prometheus
/
client_python
Public
Notifications
You must be signed in to change notification settings
Fork
873
Star
4.4k
Code
Issues
105
Pull requests
43
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
client_python
/
tox.ini
Copy path
More file actions
More file actions
Latest commit
History
History
History
82 lines (72 loc) · 1.5 KB
Breadcrumbs
client_python
/
tox.ini
Copy path
File metadata and controls
82 lines (72 loc) · 1.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tox]
envlist
= coverage-clean,py{3.9,3.10,3.11,3.12,3.13,3.14,py3.9,3.9-nooptionals},coverage-report,flake8,isort,mypy
[testenv]
deps
=
asgiref
coverage
pytest
pytest-benchmark
attrs
{py3.9,pypy3.9}: twisted
{py3.9,pypy3.9}: aiohttp
{py3.9,pypy3.9}: django
{py3.9}: python-snappy
commands
= coverage run --parallel -m pytest {posargs}
[testenv:py3.9-nooptionals]
commands
= coverage run --parallel -m pytest {posargs}
[testenv:coverage-clean]
deps
= coverage
skip_install
= true
commands
= coverage erase
[testenv:coverage-report]
deps
= coverage
skip_install
= true
commands
=
coverage combine
coverage report
[testenv:flake8]
deps
=
flake8~=7.3
flake8-docstrings~=1.7
flake8-import-order~=0.19
skip_install
= true
commands
=
flake8 prometheus_client/ tests/
[testenv:isort]
deps
=
isort
==5.10.1
skip_install
= true
commands
=
isort --check prometheus_client/ tests/
[testenv:mypy]
deps
=
pytest
aiohttp
asgiref
mypy
==0.991
skip_install
= true
commands
=
mypy --install-types --non-interactive prometheus_client/ tests/
[flake8]
ignore
=
D,
E303,
E402,
E501,
E722,
E741,
F821,
F841,
W291,
W293,
W503,
E129,
E731
per-file-ignores
= prometheus_client/__init__.py:F401
import-order-style
= google
application-import-names
= prometheus_client
[isort]
force_alphabetical_sort_within_sections
= True
force_sort_within_sections
= True
include_trailing_comma
= True
multi_line_output
= 5
Back
|
FazBrowse Home
|
New Git URL