-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (34 loc) · 979 Bytes
/
pyproject.toml
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
[tool.pylint.messages_control]
disable = [
"no-name-in-module",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"too-few-public-methods",
"abstract-method",
"duplicate-code",
]
[tool.pylint]
generated-members = "torch.*"
ignore-paths = "tests/*.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -x --cov"
testpaths = [
"tests"
]
python_files = "test*.py"
markers = [
"geonames: mark a test designed for geonames api",
"ncbi: mark a test designed for ncbi api",
"cache: mark a test designed for the cache system",
"wahis: mark a test designed for wahis api",
"geography: mark a test designed for geographies",
"taxon: mark a test designed for taxons",
"flunet: mark a test designed for flunet",
"gmpd: mark a test designed for gmpd",
"virion: mark a test designed for virion",
"wahis: mark a test designed for wahis",
"unit: mark a unit test",
"integrity: mark an integrity test"
]