From 1df8b5785b2de7b001c4074b876daf6953470276 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 31 Dec 2018 23:31:49 -0500 Subject: [PATCH] Test with same features in Travis and AppVeyor --- .travis.yml | 4 ++-- appveyor.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index e32e89b4..46ee13a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,11 +25,11 @@ matrix: - cargo build --no-default-features - cargo build --no-default-features --features alloc - cargo build --no-default-features --features rc,alloc - - cargo test --features rc,unstable,derive + - cargo test --features derive,rc,unstable - cd "${TRAVIS_BUILD_DIR}/test_suite/deps" - cargo build - cd "${TRAVIS_BUILD_DIR}/test_suite" - - cargo test --features unstable,compiletest + - cargo test --features compiletest,unstable - cd "${TRAVIS_BUILD_DIR}/test_suite/no_std" - cargo build diff --git a/appveyor.yml b/appveyor.yml index d081e06b..ca31b96a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,7 +23,7 @@ for: - cargo build --no-default-features - cd %APPVEYOR_BUILD_FOLDER%\serde_test - cargo build - - cargo test + - cargo test --features serde/derive,serde/rc - matrix: only: @@ -34,8 +34,8 @@ for: - cargo build --no-default-features - cargo build --no-default-features --features alloc - cargo build --no-default-features --features rc,alloc - - cargo test --features rc,unstable + - cargo test --features derive,rc,unstable - cd %APPVEYOR_BUILD_FOLDER%\test_suite\deps - cargo build - cd %APPVEYOR_BUILD_FOLDER%\test_suite - - cargo test --features unstable + - cargo test --features compiletest,unstable