From d71c66a24384e39d48186ad2ad33499dde8fa032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Cidre?= Date: Thu, 4 Jan 2018 17:04:40 +0100 Subject: [PATCH] Add mockgen dependency on the Readme to run make ci (#533) --- README.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 497e58ddc..fec37bc07 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,25 @@ Use following Makefile commands: # Testing To setup accounts passphrase you need to setup an environment variable: `export ACCOUNT_PASSWORD="secret_pass_phrase"`. -To test statusgo, use: `make ci`. Make sure the `gometalinter` package is installed first by running `make lint-install` -To test statusgo using a giving network by name, use: `make ci networkid=rinkeby`. -To test statusgo using a giving network by id number, use: `make ci networkid=3`. +Make sure the dependencies are installed first by running: +``` +make lint-install +make mock-install +``` +To test fully statusgo, use: +``` +make ci +``` + +To test statusgo using a given network by name, use: +``` +make ci networkid=rinkeby +``` + +To test statusgo using a given network by number ID, use: +``` +make ci networkid=3 +``` If you want to launch specific test, for instance `RPCSendTransactions`, use the following command: ```