Skip to content

Commit 98fcd12

Browse files
author
Hugo Osvaldo Barrera
committed
Only measure coverage of vdirsyncer/
i.e.: Ignore non-application code like contrib/
1 parent f2a1afe commit 98fcd12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ all:
4343

4444
ci-test:
4545
curl -s https://codecov.io/bash > $(CODECOV_PATH)
46-
$(PYTEST) --cov-append tests/unit/ tests/system/
46+
$(PYTEST) --cov vdirsyncer --cov-append tests/unit/ tests/system/
4747
bash $(CODECOV_PATH) -c
4848
[ "$(ETESYNC_TESTS)" = "false" ] || make test-storage
4949

5050
ci-test-storage:
5151
curl -s https://codecov.io/bash > $(CODECOV_PATH)
5252
set -ex; \
5353
for server in $(DAV_SERVER); do \
54-
DAV_SERVER=$$server $(PYTEST) --cov-append tests/storage; \
54+
DAV_SERVER=$$server $(PYTEST) --cov vdirsyncer --cov-append tests/storage; \
5555
done
5656
bash $(CODECOV_PATH) -c
5757

0 commit comments

Comments
 (0)