mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Only measure coverage of vdirsyncer/
i.e.: Ignore non-application code like contrib/
This commit is contained in:
parent
f2a1afe6d3
commit
98fcd12fa7
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -43,7 +43,7 @@ all:
|
||||||
|
|
||||||
ci-test:
|
ci-test:
|
||||||
curl -s https://codecov.io/bash > $(CODECOV_PATH)
|
curl -s https://codecov.io/bash > $(CODECOV_PATH)
|
||||||
$(PYTEST) --cov-append tests/unit/ tests/system/
|
$(PYTEST) --cov vdirsyncer --cov-append tests/unit/ tests/system/
|
||||||
bash $(CODECOV_PATH) -c
|
bash $(CODECOV_PATH) -c
|
||||||
[ "$(ETESYNC_TESTS)" = "false" ] || make test-storage
|
[ "$(ETESYNC_TESTS)" = "false" ] || make test-storage
|
||||||
|
|
||||||
|
|
@ -51,7 +51,7 @@ ci-test-storage:
|
||||||
curl -s https://codecov.io/bash > $(CODECOV_PATH)
|
curl -s https://codecov.io/bash > $(CODECOV_PATH)
|
||||||
set -ex; \
|
set -ex; \
|
||||||
for server in $(DAV_SERVER); do \
|
for server in $(DAV_SERVER); do \
|
||||||
DAV_SERVER=$$server $(PYTEST) --cov-append tests/storage; \
|
DAV_SERVER=$$server $(PYTEST) --cov vdirsyncer --cov-append tests/storage; \
|
||||||
done
|
done
|
||||||
bash $(CODECOV_PATH) -c
|
bash $(CODECOV_PATH) -c
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue