Skip to content

Commit d2bd4ec

Browse files
committed
auto push commit coverage
1 parent 880a39b commit d2bd4ec

6 files changed

Lines changed: 1555 additions & 4 deletions

File tree

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ pdoc/
1616
*.obj
1717
.vscode/
1818
.codacy-coverage
19-
coverage.xml
2019
.coverage
2120
docs_
2221
codacy.sh
@@ -86,7 +85,6 @@ htmlcov/
8685
.coverage.*
8786
.cache
8887
nosetests.xml
89-
coverage.xml
9088
*.cover
9189
*.py,cover
9290
.hypothesis/

MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
include LICENSE
22
include README.rst
33

4+
recursive-include pyben *
45
recursive-include tests *
6+
recursive-include assets *
7+
recursive-include .github *
58
recursive-exclude * __pycache__
69
recursive-exclude * *.py[cod]
10+
recursive-exclude docs *
11+
recursive-exclude site *
712

813
recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif *.json *.md

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ clean-build: ## remove build artifacts
4242
rm -f .coverage
4343
rm -fr htmlcov/
4444
rm -fr .pytest_cache
45-
rm -fr corbertura.xml
45+
rm -f corbertura.xml
46+
rm -f coverage.xml
47+
rm -fr .codacy-coverage
4648

4749
lint: ## check style with flake8
4850
black pyben tests

0 commit comments

Comments
 (0)