From 128e456342ef42f70f4f6c5aa835bd5bec21a7b7 Mon Sep 17 00:00:00 2001 From: Vinzent Steinberg Date: Fri, 2 Jun 2017 12:01:31 +0200 Subject: [PATCH] Travis, please test traits with no_std --- ci/test_full.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/test_full.sh b/ci/test_full.sh index b750b71..aac03e1 100755 --- a/ci/test_full.sh +++ b/ci/test_full.sh @@ -10,6 +10,10 @@ for package in bigint complex integer iter rational traits; do cargo test --manifest-path $package/Cargo.toml done +# Only num-tratis supports no_std at the moment. +cargo build --manifest-path traits/Cargo.toml --no-default-features +cargo test --manifest-path traits/Cargo.toml --no-default-features + # Each isolated feature should also work everywhere. for feature in '' bigint rational complex; do cargo build --verbose --no-default-features --features="$feature"