aboutsummaryrefslogtreecommitdiff
path: root/circle.yml
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-06-01 21:53:10 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-06-01 21:53:10 -0400
commit092ea948ab6af8266fb25fadcdb033e878beb31b (patch)
tree20bcce4ff142d2c0958237a7bbc9fe426295de1e /circle.yml
parentaf11aa2c0f7d12b6eeb5ac4a22389194a13997c2 (diff)
downloadcbt-092ea948ab6af8266fb25fadcdb033e878beb31b.tar.gz
cbt-092ea948ab6af8266fb25fadcdb033e878beb31b.tar.bz2
cbt-092ea948ab6af8266fb25fadcdb033e878beb31b.zip
Reduce output during testing, it was killing the browser
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/circle.yml b/circle.yml
index 392054c..64d62c0 100644
--- a/circle.yml
+++ b/circle.yml
@@ -6,13 +6,13 @@ dependencies:
cache_directories:
- "cache"
override:
- - ./cbt compile -Dlog=all
- - ./cbt direct -Dlog=all
+ - ./cbt compile
+ - ./cbt direct
- ./cbt -Dlog=all
- - cd plugins/scalatest/ && ../../cbt compile -Dlog=all && cd ../../
+ - cd plugins/scalatest/ && ../../cbt compile && cd ../../
test:
override:
- - ./cbt direct test -Dlog=all
- - ./cbt test -Dlog=all
- - cd examples/build-scalatest && ../../cbt test -Dlog=all && cd ../..
+ - ./cbt direct test
+ - ./cbt test
+ - cd examples/build-scalatest && ../../cbt test && cd ../..