forked from Ensembl/ensembl-compara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 735 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 735 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
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
# CITest project is on hold and it needs to be updated before resuming its unit tests
addopts = "-v --tb=native --server=mysql://ensadmin:$ENSADMIN_PSW@mysql-ens-compara-prod-1:4485/ --ignore=src/python/tests/test_citest.py"
[tool.coverage.run]
source = ["src/python/lib"]
[tool.mypy]
ignore_missing_imports = true
warn_unused_configs = true
[tool.pylint.messages_control]
max-line-length = 110
disable = [
"invalid-name",
"similarities",
"too-few-public-methods",
"too-many-arguments",
"too-many-locals",
"too-many-statements",
"unspecified-encoding",
"wildcard-import"
]