forked from MAC-VO/MAC-VO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (30 loc) · 996 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
[tool.pytest.ini_options]
testpaths = [
"./Scripts/UnitTest",
]
pythonpath = [
"."
]
markers = [
"local: marks tests that should only run locally (deselect with '-m \"not local\"')"
]
[tool.pyright]
include = [
"DataLoader", "Evaluation", "Module", "Odometry",
"Scripts", "Train", "Utility", "*.py"
]
exclude = [
"./Module/Network/PWCNet", # Third-party lib
"./Module/Network/FlowFormer", # Third-party lib
"./Module/Network/UniMatch", # Third-party lib
"./Module/Network/UniCeption", # Third-party lib
"./Module/Network/GMFlow", # Third-party lib
"./Odometry/BaselineDPVO.py", # Need install DPVO and compile cuda kernel
"./Scripts/AdHoc/FLOPS_analyzer.py", # Need additional package fvcore
]
typeCheckingMode = "standard"
reportImportCycles = "error"
reportDuplicateImport = "error"
reportAbstractUsage = "warning"
reportPrivateImportUsage = "information"
stubPath = "./stubs"