2021-10-30 16:14:59 +00:00
|
|
|
[tool.black]
|
|
|
|
extend-exclude = 'capabilities-data'
|
|
|
|
|
2023-08-14 23:03:36 +00:00
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = "6.0"
|
|
|
|
addopts = "--doctest-modules --cov escpos --cov-report=xml"
|
|
|
|
testpaths = [
|
|
|
|
"test",
|
|
|
|
"src",
|
|
|
|
"src/escpos",
|
|
|
|
"escpos",
|
|
|
|
]
|
2023-09-17 21:24:16 +00:00
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = ["pytest",
|
|
|
|
"jaconv",
|
|
|
|
"scripttest",
|
|
|
|
"barcode.*",
|
|
|
|
"qrcode",
|
|
|
|
"usb.*",
|
|
|
|
"cups",
|
|
|
|
"win32print"
|
|
|
|
]
|
|
|
|
ignore_missing_imports = true
|