From e593f1023165d70a9e783c698866b67e93e5ebaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20F=C3=A4rnstrand?= Date: Sat, 15 Dec 2018 15:52:37 +0100 Subject: [PATCH] Skip testing deadlock detection on old Rust versions --- .travis.yml | 3 ++- appveyor.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index dba49d42..8ea2d8c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,8 @@ script: - cd ..; - travis-cargo build - travis-cargo test -- travis-cargo test -- --features=deadlock_detection +- travis-cargo --only stable test -- --features=deadlock_detection +- travis-cargo --only beta test -- --features=deadlock_detection - travis-cargo --only nightly doc -- --all-features --no-deps -p parking_lot -p parking_lot_core -p lock_api - cd benchmark - travis-cargo build diff --git a/appveyor.yml b/appveyor.yml index fef6b570..83498db3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -25,5 +25,5 @@ build_script: test_script: - travis-cargo test - - travis-cargo test -- --features=deadlock_detection + - travis-cargo --only nightly test -- --features=deadlock_detection - travis-cargo doc