mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Fix exitcodes in Makefile
This commit is contained in:
parent
2e83354c06
commit
3836448cc3
1 changed files with 2 additions and 0 deletions
2
Makefile
2
Makefile
|
|
@ -18,6 +18,7 @@ TRAVIS = false
|
|||
PIP_INSTALL = pip install
|
||||
|
||||
install-davserver:
|
||||
set -e; \
|
||||
if [ ! -d "$(TESTSERVER_BASE)$(DAV_SERVER)/" ]; then \
|
||||
git clone --depth=1 \
|
||||
https://github.com/vdirsyncer/$(DAV_SERVER)-testserver.git \
|
||||
|
|
@ -31,6 +32,7 @@ install-test: install-davserver
|
|||
[ $(TRAVIS) != "true" ] || $(PIP_INSTALL) coverage coveralls
|
||||
|
||||
test:
|
||||
set -e; \
|
||||
if [ "$(TRAVIS)" = "true" ]; then \
|
||||
coverage run --source=vdirsyncer/ --module pytest; \
|
||||
coveralls; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue