[tool.isort] | |
profile = 'black' | |
known_third_party = ["paddle"] | |
[tool.black] | |
line-length = 119 | |
target_version = ['py35', 'py36', 'py37', 'py38', 'py39', 'py310'] | |
exclude = ['.flake8'] | |
[tool.pytest.ini_options] | |
minversion = "6.0" | |
pythonpath = ["."] | |
testpaths = [ | |
# "tests/models", | |
] | |
python_files = [ | |
"test.py", | |
"test_*.py" | |
] | |
filterwarnings = [ | |
"ignore::UserWarning", | |
'ignore::DeprecationWarning', | |
] |