Don't run the test runner in release mode

It's gotten some improvements to the debug mode runtime that the extra
optimizations aren't worth it on CI (take too much time)
This commit is contained in:
Alex Crichton 2018-08-04 08:22:47 -07:00
parent d66b834afd
commit 16c2bee9c5

View File

@ -1,4 +1,4 @@
# TODO: we shouldn't check this in to git, need to figure out how to avoid doing
# that.
[target.wasm32-unknown-unknown]
runner = 'cargo +nightly run --release -p wasm-bindgen-cli --bin wasm-bindgen-test-runner --'
runner = 'cargo +nightly run -p wasm-bindgen-cli --bin wasm-bindgen-test-runner --'