From 86fa87e590167330b5de1d586e0fed443d7298e4 Mon Sep 17 00:00:00 2001 From: Joe Richey Date: Tue, 21 Jul 2020 12:21:43 -0700 Subject: [PATCH] stdweb: Remove CI runs with cargo-web Right now "cargo web test" is broken due to upstream changes. We will disable stdweb tests until the stdweb project fixes things. See: https://github.com/koute/cargo-web/issues/243 Signed-off-by: Joe Richey --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 79cef401..5fb13d1e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,9 +66,10 @@ jobs: - mv cargo-web wasmtime wasm-bindgen-test-runner $HOME/.cargo/bin script: - cargo test --target wasm32-wasi - # stdweb (wasm32-unknown-unknown) tests (Node, Chrome) - - cargo web test --features js --nodejs - - cargo web test --features js + # stdweb (wasm32-unknown-unknown) tests are currently broken (see https://github.com/koute/cargo-web/issues/243) + # - cargo web test --features js --nodejs + # - cargo web test --features js + - cargo build --features js # wasm-bindgen (wasm32-unknown-unknown) tests (Node, Firefox, Chrome) - cargo test --target wasm32-unknown-unknown --features js - GECKODRIVER=$HOME/geckodriver