summaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/circle.yml b/circle.yml
index 3d0243877..e8e695cfb 100644
--- a/circle.yml
+++ b/circle.yml
@@ -13,6 +13,6 @@ test:
- sudo robot test/functional/cases
- lcov -b . -d . -c --output-file coverage.info
- ln -s src/ragel .
- - coveralls-lcov -t ${COVERALLS_REPO_TOKEN} coverage.info
+ - if [ ! -z $COVERALLS_REPO_TOKEN ]; then coveralls-lcov -t ${COVERALLS_REPO_TOKEN} coverage.info; fi
post:
- for i in output.xml log.html report.html; do mv $i $CIRCLE_ARTIFACTS; done