diff --git a/appveyor.yml b/appveyor.yml index b3a7cd2..9cd0b27 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,15 +24,15 @@ install: - rustc -vV - cargo -vV - if defined aarch64 ( - rustup target add aarch64-pc-windows-msvc + rustup target add aarch64-pc-windows-msvc ) build_script: - if "%channel%"=="nightly" ( - cargo test --verbose --color always --features "func-types impl-default nightly user" + cargo test --verbose --color always --features "func-types impl-default nightly user" ) else ( - cargo test --verbose --color always --features "func-types impl-default user" + cargo test --verbose --color always --features "func-types impl-default user" ) - if defined aarch64 ( - cargo test --verbose --color always --features "func-types impl-default nightly user" --target aarch64-pc-windows-msvc --no-run + cargo test --verbose --color always --features "func-types impl-default nightly user" --target aarch64-pc-windows-msvc --no-run )