diff --git a/.travis.yml b/.travis.yml index 154db75..a50ec9f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ install: - pushd $TRAVIS_BUILD_DIR - docker-compose build --build-arg TASK_VERSION=$TASK_VERSION tests script: - - docker-compose up --exit-code-from tests + - make test after_success: - ls /tmp/taskwiki-coverage - mv /tmp/taskwiki-coverage/.coverage.* . || echo ok diff --git a/Makefile b/Makefile index 06c6d54..5dac3b1 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,3 @@ test: - mkdir -p /tmp/taskwiki-coverage - - docker-compose up + - docker-compose up --exit-code-from tests