From 38f16b4c75f8b182ef166c8c8a1ac32686c468eb Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Tue, 6 Nov 2018 12:20:08 +0100 Subject: [PATCH] Run tests in only one thread --- .circleci/config.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f0849cfe9..9db1b0aa7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,7 +11,7 @@ jobs: - v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }} - run: sudo apt-get install -y cmake - run: rustup default nightly-2018-10-07 - - run: cargo test + - run: make test - save_cache: paths: diff --git a/Makefile b/Makefile index 8ba1377e1..af631c70a 100644 --- a/Makefile +++ b/Makefile @@ -14,4 +14,4 @@ install: cargo install --path . test: - cargo test + cargo test -- --test-threads=1