Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Coverage configuration for Rendiff FFmpeg API

[run]
source = api, worker, storage
omit =
*/tests/*
*/test_*
*/__pycache__/*
*/migrations/*
*/venv/*
*/env/*
setup.py
conftest.py
*/alembic/*

[report]
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
class .*\bProtocol\):
@(abc\.)?abstractmethod
@abstractmethod

precision = 2
show_missing = True
skip_covered = False

[html]
directory = htmlcov
title = Rendiff FFmpeg API Coverage Report

[xml]
output = coverage.xml
Loading
Loading