don't call makeMockCompiler for normal build

pull/1/head
yann300 8 years ago
parent 93bd265367
commit 54284c02b6
  1. 2
      .travis.yml
  2. 1
      ci/browser_tests.sh
  3. 4
      package.json

@ -2,7 +2,7 @@ language: node_js
node_js:
- stable
script:
- npm run lint && npm run csslint && npm run test && npm run downloadsolc && npm run build
- npm run lint && npm run csslint && npm run test && npm run downloadsolc && npm run make-mock-compiler && npm run build
- ./ci/browser_tests.sh
deploy:
provider: script

@ -10,7 +10,6 @@ SAUCECONNECT_JOBIDENTIFIER="browsersolidity_tests_${TRAVIS_JOB_NUMBER}"
SAUCECONNECT_READYFILE="sc.ready"
TEST_EXITCODE=0
node ci/makeMockCompiler.js
npm run serve &
wget "$SAUCECONNECT_URL"

@ -151,14 +151,14 @@
"nightwatch_remote_parallel": "nightwatch --config nightwatch.js --env ie,safari,chrome,default",
"nightwatch_remote_safari": "nightwatch --config nightwatch.js --env safari",
"onchange": "onchange build/app.js -- npm-run-all lint",
"prepublish": "mkdirp build; npm-run-all -ls downloadsolc make-mock-compiler build",
"prepublish": "mkdirp build; npm-run-all -ls downloadsolc build",
"selenium": "execr --silent selenium-standalone start",
"selenium-install": "selenium-standalone install",
"serve": "execr --silent http-server .",
"sourcemap": "exorcist --root ../ build/app.js.map > build/app.js",
"start": "npm-run-all -lpr serve watch onchange",
"test": "standard; npm run csslint; node test/index.js",
"test-browser": "npm-run-all -lpr selenium serve browsertest",
"test-browser": "npm-run-all -lpr selenium downloadsolc make-mock-compiler serve browsertest",
"watch": "watchify src/index.js -dv --delay 0 -p browserify-reload -o '| npm run sourcemap'"
}
}

Loading…
Cancel
Save