forked from MarketSquare/webdrivermanager
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
48 lines (40 loc) · 741 Bytes
/
setup.cfg
File metadata and controls
48 lines (40 loc) · 741 Bytes
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
[sdist]
formats=gztar,zip
[wheel]
universal=1
[bdist_wheel]
universal=1
[flake8]
ignore = E501
exclude = .git,__pycache__,dist,venv,setup.py
[coverage:run]
branch = True
[coverage:report]
exclude_lines =
pragma: no cover
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
venv/*
test/*
[coverage:paths]
source = webdrivermanager
[coverage:xml]
output = coverage.xml
[coverage:html]
directory = report
[isort]
line_length=300
known_future_library=future,pies
known_standard_library=std,std2
known_third_party=
known_first_party=
skip=venv
indent=' '
multi_line_output=0
length_sort=1
forced_separate=
default_section=FIRSTPARTY
no_lines_before=LOCALFOLDER