Skip to content

Commit 98575dc

Browse files
committed
Initial project
1 parent cea1502 commit 98575dc

21 files changed

+801
-0
lines changed

.coveragerc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[run]
2+
source = migdb
3+
branch = True
4+
omit =
5+
*__init__*
6+
*tests*
7+
8+
[report]
9+
exclude_lines =
10+
pragma: no cover
11+
def __repr__
12+
raise AssertionError
13+
raise NotImplementedError
14+
if __name__ == .__main__.:

.gitattributes

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Source files
2+
# ============
3+
*.pxd text diff=python
4+
*.py text diff=python
5+
*.py3 text diff=python
6+
*.pyw text diff=python
7+
*.pyx text diff=python
8+
# Binary files
9+
# ============
10+
*.db binary
11+
*.p binary
12+
*.pkl binary
13+
*.pyc binary
14+
*.pyd binary
15+
*.pyo binary

0 commit comments

Comments
 (0)