mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
26 lines
416 B
INI
26 lines
416 B
INI
[flake8]
|
|
max-line-length = 9999
|
|
import-order-style = pep8
|
|
exclude = .git,.vscode,libraries,build.py
|
|
extend-ignore =
|
|
I202
|
|
per-file-ignores =
|
|
*/__init__.py: F401
|
|
|
|
[pytest]
|
|
minversion = 4.6
|
|
testpaths =
|
|
tests
|
|
|
|
[coverage:run]
|
|
source =
|
|
jellyfin_kodi
|
|
context.py
|
|
context_play.py
|
|
default.py
|
|
service.py
|
|
omit =
|
|
tests/*
|
|
build.py
|
|
branch = True
|
|
command_line = -m pytest --junitxml=test.xml
|