diff --git a/.travis.yml b/.travis.yml index 7103ae3..5ca61af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,9 +13,9 @@ before_install: - echo "$TRAVIS_COMMIT_MESSAGE" script: - 'if [[ "$TRAVIS_EVENT_TYPE" = "cron" || "$TRAVIS_COMMIT_MESSAGE" == *"[ci-cron]"* ]]; then - python -m unittest discover test_sync ; + python -m unittest discover test_sync --logginglevel debug; else - coverage run -m unittest discover tests/ ; + coverage run -m unittest discover tests/ --logginglevel debug; fi' - ( if [ -n "$TRAVIS_TAG" ]; then if [ $TAG_NAME != $TRAVIS_TAG ]; then echo "This tag is for the wrong version. Got \"$TRAVIS_TAG\" expected \"$TAG_NAME\"."; exit 1; fi; fi; ) after_success: diff --git a/test_sync/test_sync.py b/test_sync/test_sync.py index 979d83e..94c5dc2 100644 --- a/test_sync/test_sync.py +++ b/test_sync/test_sync.py @@ -8,6 +8,7 @@ class TestSync(unittest.TestCase): @staticmethod def test_sync(): + print('test_sync') args = parser.parse_known_args()[0] client = clientfromargs(args) client.sync()