Skip to content

Commit 268bea5

Browse files
committed
fix: added coverage_html to gitignore, improved Makefile
1 parent 78bb239 commit 268bea5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ dist
77
.coverage
88
venv*
99
.*cache
10+
coverage_html

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ build:
66
test:
77
python -m pytest tests -v --cov=aw_core --cov=aw_datastore --cov=aw_transform --cov=aw_query
88

9-
coverage_html: test
9+
.coverage:
10+
make test
11+
12+
coverage_html: .coverage
1013
python -m coverage html -d coverage_html
1114

1215
benchmark:

0 commit comments

Comments
 (0)