From 4a912ae3bcdfc1234843c76a24fcf9bf1e323280 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Mon, 24 Jan 2022 17:07:19 +0100 Subject: [PATCH] test: show how to run all tests --- tests/integration/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/integration/README.md b/tests/integration/README.md index 4e38b637..f51e2573 100644 --- a/tests/integration/README.md +++ b/tests/integration/README.md @@ -18,3 +18,11 @@ By default, the testing script will ask after every command if the execution succeeded. If you reply `n`, it will log the test in the `logdir`. If you want all tests to run without questions, run `export logall=yes` before executing the test script. + +To run tests, you'll need to prepare your environment: + +``` +cp .envrc.sample .envrc # fill out values... +direnv allow +./test_all.sh logs +```