diff --git a/appveyor.yml b/appveyor.yml index a9785c95a..e806b8e70 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -83,5 +83,5 @@ test_script: - build\\rippled --unittest # Run the integration tests - - npm install + - npm install --progress=false - npm test diff --git a/bin/ci/ubuntu/build-and-test.sh b/bin/ci/ubuntu/build-and-test.sh index 9e7b5becb..e3d8ea5a8 100755 --- a/bin/ci/ubuntu/build-and-test.sh +++ b/bin/ci/ubuntu/build-and-test.sh @@ -37,5 +37,5 @@ else fi # Run NPM tests -npm install +npm install --progress=false npm test --rippled=$RIPPLED_PATH diff --git a/circle.yml b/circle.yml index d99021284..b29d64065 100644 --- a/circle.yml +++ b/circle.yml @@ -30,7 +30,7 @@ test: # gdb segfaults # - cat script.gdb | gdb --ex 'set print thread-events off' --return-child-result --args build/clang.debug/rippled --unittest - build/clang.debug/rippled --unittest - - npm install + - npm install --progress=false # Use build/(gcc|clang).debug/rippled - | echo "exports.default_server_config = {\"rippled_path\" : \"$HOME/rippled/build/clang.debug/rippled\"};" > test/config.js