From a6df35b3d224b5aa2fa4303f973dfb1eb6e872ff Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 15 Aug 2017 21:58:52 -0700 Subject: [PATCH] Disable no_std test on appveyor --- travis.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/travis.sh b/travis.sh index c43cb55f..a936554d 100755 --- a/travis.sh +++ b/travis.sh @@ -52,8 +52,10 @@ else channel build cd "$DIR/test_suite" channel test --features unstable - cd "$DIR/test_suite/no_std" - channel build + if [ -z "${APPVEYOR}" ]; then + cd "$DIR/test_suite/no_std" + channel build + fi CHANNEL=beta cd "$DIR"