Procházet zdrojové kódy

Travis, please test traits with no_std

Vinzent Steinberg před 7 roky
rodič
revize
128e456342
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. 4 0
      ci/test_full.sh

+ 4 - 0
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
   cargo test --manifest-path $package/Cargo.toml
 done
 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.
 # Each isolated feature should also work everywhere.
 for feature in '' bigint rational complex; do
 for feature in '' bigint rational complex; do
   cargo build --verbose --no-default-features --features="$feature"
   cargo build --verbose --no-default-features --features="$feature"