Skip to content

Commit

Permalink
only test futures on nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Sep 15, 2017
1 parent cd48e43 commit a14568c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,7 @@ script:
- |
if [ -n "$RUSTFLAGS" ]; then
cargo build -p rayon-futures &&
cargo test -p rayon-futures
if [ $TRAVIS_RUST_VERSION == nightly ]; then
cargo test -p rayon-futures
fi
fi
6 changes: 4 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ test_script:
cargo test -p rayon-core &&
cargo test -p rayon-demo
)
- if not [%RUSTFLAGS%]==[%^RUSTFLAGS%] (
- if not "%RUSTFLAGS%"=="%^RUSTFLAGS%" (
cargo build -p rayon-futures &&
cargo test -p rayon-futures
if [%CHANNEL%]==[nightly] (
cargo test -p rayon-futures
)
)

0 comments on commit a14568c

Please sign in to comment.