From 88c3ba83f1de719988df2ab37ecf45095564eeee Mon Sep 17 00:00:00 2001 From: David Palm Date: Thu, 9 Aug 2018 10:48:34 +0200 Subject: [PATCH] Fix travis script --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3ddb459..2b14aa1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,6 @@ matrix: script: - cargo build - cargo test --all --exclude uint - - cd uint/ && cargo test --features=std,impl_quickcheck_arbitrary - - cd hashdb/ && cargo test --no-default-features - - cd plain_hasher/ && cargo test --no-default-features + - cd uint/ && cargo test --features=std,impl_quickcheck_arbitrary && cd .. + - cd hashdb/ && cargo test --no-default-features && cd .. + - cd plain_hasher/ && cargo test --no-default-features && cd ..