From 57b9c08f5abad8cff6a097c48a6025bdd7d91aad Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Sat, 7 May 2022 18:22:55 +0200 Subject: [PATCH] [doc] Update busted version mentioned in docs (#9078) --- doc/Unit_tests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Unit_tests.md b/doc/Unit_tests.md index 3514124c4..4aa357c42 100644 --- a/doc/Unit_tests.md +++ b/doc/Unit_tests.md @@ -2,12 +2,12 @@ Unit tests are automatically performed using [busted](http://olivinelabs.com/busted/). It depends on `luarocks`. -To grab busted, install the same version [as used in the automated tests](https://github.com/koreader/koreader/blob/master/.ci/install.sh). At the time of writing that is 2.0.rc12-1: +To grab busted, install the same version [as used in the automated tests](https://github.com/koreader/koreader/blob/master/.ci/install.sh). At the time of writing that is 2.0.0-1: ```bash mkdir $HOME/.luarocks cp /etc/luarocks/config.lua $HOME/.luarocks/config.lua echo "wrap_bin_scripts = false" >> $HOME/.luarocks/config.lua -luarocks --local install busted 2.0.rc12-1 +luarocks --local install busted 2.0.0-1 ``` Then you can set up the environment variables with `./kodev activate`.