summaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2016-08-02 22:34:37 +0100
committerAndrew Lewis <nerf@judo.za.org>2016-08-02 22:34:37 +0100
commitf9ff09006fdcfc5d70112ac1ba2e02d65a86b064 (patch)
tree403d41fed29741f75658de3015beeea6a1eb0ae9 /circle.yml
parent0ef106e8a3a39c3dbd8e2cc5f24fff7e0e23ac40 (diff)
downloadrspamd-f9ff09006fdcfc5d70112ac1ba2e02d65a86b064.tar.gz
rspamd-f9ff09006fdcfc5d70112ac1ba2e02d65a86b064.zip
[Minor] Unbreak tests on pull requests
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