diff --git a/circle.yml b/circle.yml index fb83dba0..2e46f661 100644 --- a/circle.yml +++ b/circle.yml @@ -6,7 +6,6 @@ machine: dependencies: pre: - npm -g install npm@latest-2 - - npm install flow-bin - wget https://s3-us-west-2.amazonaws.com/ripple-debs/rippled_0.30.1-b11-1.deb - sudo dpkg -i rippled_0.30.1-b11-1.deb test: diff --git a/package.json b/package.json index 6d008136..1fbd0f47 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,6 @@ "ejs": "^2.3.4", "eslint": "^2.9.0", "eventemitter2": "^0.4.14", - "flow-bin": "^0.32.0", "gulp": "^3.8.10", "gulp-bump": "^0.1.13", "gulp-rename": "^1.2.0", diff --git a/scripts/ci.sh b/scripts/ci.sh index 77b4d3f2..549ef11b 100755 --- a/scripts/ci.sh +++ b/scripts/ci.sh @@ -76,7 +76,6 @@ oneNode() { checkEOL doctest lint - typecheck unittest integrationtest } @@ -84,7 +83,7 @@ oneNode() { twoNodes() { case "$NODE_INDEX" in 0) doctest; lint; integrationtest;; - 1) checkEOL; typecheck; unittest;; + 1) checkEOL; unittest;; *) echo "ERROR: invalid usage"; exit 2;; esac } @@ -92,7 +91,7 @@ twoNodes() { threeNodes() { case "$NODE_INDEX" in 0) doctest; lint; integrationtest;; - 1) checkEOL; typecheck;; + 1) checkEOL;; 2) unittest;; *) echo "ERROR: invalid usage"; exit 2;; esac