From 4706ed4238d0950e08db9a858bd6001172d54740 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Tue, 6 Apr 2021 14:00:37 +0300 Subject: [PATCH] Add --test-threads=1 to instructions on how to run tests. Currently, the tests don't work in parallel. The tests try to create a data directory in the same path and clash with each other. That should be fixed, but for now, let's at least fix the instructions on how it works now. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4068b7b537..a9e6633f45 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Zenith substitutes PostgreSQL storage layer and redistributes data across a clus ```sh git clone --recursive https://github.com/libzenith/zenith.git ./pgbuild.sh # builds postgres and installs it to ./tmp_install -cargo test +cargo test -- --test-threads=1 ``` ## Source tree layout