From 0df9b3254464613c317404182e04e66ea17c2085 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 21 Sep 2016 19:47:18 -0700 Subject: [PATCH] Fix test syntax --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f94c5b72..2fab4d80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ cache: cargo sudo: required rust: - nightly -- beta - 1.10.0 addons: postgresql: 9.4 @@ -11,4 +10,4 @@ before_script: - "./.travis/setup.sh" script: - cargo test -- cargo test --features (cargo read-manifest | jq -r '.features|keys|map(select(. != "with-security-framework"))|join(" ")') +- cargo test --features $(cargo read-manifest | jq -r '.features|keys|map(select(. != "with-security-framework"))|join(" ")')