Skip to content

Commit eb63b8c

Browse files
committed
Major change - break
1 parent dff589d commit eb63b8c

129 files changed

Lines changed: 26377 additions & 1342 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.coveragerc

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Coverage configuration for Rendiff FFmpeg API
2+
3+
[run]
4+
source = api, worker, storage
5+
omit =
6+
*/tests/*
7+
*/test_*
8+
*/__pycache__/*
9+
*/migrations/*
10+
*/venv/*
11+
*/env/*
12+
setup.py
13+
conftest.py
14+
*/alembic/*
15+
16+
[report]
17+
exclude_lines =
18+
pragma: no cover
19+
def __repr__
20+
if self.debug:
21+
if settings.DEBUG
22+
raise AssertionError
23+
raise NotImplementedError
24+
if 0:
25+
if __name__ == .__main__.:
26+
class .*\bProtocol\):
27+
@(abc\.)?abstractmethod
28+
@abstractmethod
29+
30+
precision = 2
31+
show_missing = True
32+
skip_covered = False
33+
34+
[html]
35+
directory = htmlcov
36+
title = Rendiff FFmpeg API Coverage Report
37+
38+
[xml]
39+
output = coverage.xml

0 commit comments

Comments
 (0)