diff options
| author | Patrick Lodder <[email protected]> | 2021-07-29 02:00:57 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-29 02:00:57 +0200 |
| commit | 6bea578da04b0c8bf14b3d943243854c06857b63 (patch) | |
| tree | 5636b60549b97e3ac09682142167095c38db1b16 | |
| parent | Merge pull request #2423 from patricklodder/1.14-codeql-reduce-trigger (diff) | |
| parent | update qa/README.md to reflect working installation instructions (diff) | |
| download | discoin-6bea578da04b0c8bf14b3d943243854c06857b63.tar.xz discoin-6bea578da04b0c8bf14b3d943243854c06857b63.zip | |
Merge pull request #2426 from xanimo/1.14.4-qa
update qa/README.md to reflect working installation instructions
| -rw-r--r-- | qa/README.md | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/qa/README.md b/qa/README.md index e8b425cc4..d0d54a0c4 100644 --- a/qa/README.md +++ b/qa/README.md @@ -1,7 +1,7 @@ The [pull-tester](/qa/pull-tester/) folder contains a script to call multiple tests from the [rpc-tests](/qa/rpc-tests/) folder. -Every pull request to the bitcoin repository is built and run through +Every pull request to the dogecoin repository is built and run through the regression test suite. You can also run all or only individual tests locally. @@ -11,17 +11,18 @@ Before running the tests, the following must be installed. Unix ---- -`python3-zmq` and `litecoin_scrypt` are required. On Ubuntu or Debian they can be installed via: +`python3-zmq` and `ltc_scrypt` are required. On Ubuntu or Debian they can be installed via: ``` -sudo apt-get install python3-zmq -pip3 install litecoin_scrypt +sudo apt-get update && apt-get install -y curl python3-zmq python3-dev gcc +cd qa/pull-tester/ && ./install-deps.sh ``` OS X ------ ``` +brew install curl pip3 install pyzmq -pip3 install litecoin_scrypt +cd qa/pull-tester && ./install-deps.sh ``` Running tests @@ -79,7 +80,7 @@ to recover with: ```bash rm -rf cache -killall bitcoind +killall dogecoind ``` Writing tests |