File tree Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,14 @@ Building
1111 ./configure --enable-developer
1212 make
1313
14+ Dependencies
15+
16+ sudo dnf install libsecp256k1-devel
17+
18+ pip3 install --user base58
19+ pip3 install --user bitstring
20+ pip3 install --user secp256k1
21+
1422Run all of the integration tests:
1523```
1624SUBDAEMON='hsmd:remote_hsmd' \
Original file line number Diff line number Diff line change 1+ #! /usr/bin/sh
2+
3+ SUBDAEMON=' hsmd:remote_hsmd' \
4+ make \
5+ PYTEST_PAR=1 \
6+ DEVELOPER=1 \
7+ VALGRIND=0 \
8+ pytest \
9+ | & tee log
Original file line number Diff line number Diff line change 1+ #! /usr/bin/sh
2+
3+ THETEST=$1
4+
5+ export PYTHONPATH=\
6+ ` pwd` /hsmd:\
7+ ` pwd` /contrib/pylightning:\
8+ ` pwd` /contrib/pyln-proto:\
9+ ` pwd` /contrib/pyln-testing:\
10+ ` pwd` /contrib/pyln-client:\
11+ $PYTHONPATH
12+
13+ TEST_DEBUG=1 \
14+ DEVELOPER=1 \
15+ VALGRIND=0 \
16+ SLOW_MACHINE=1 \
17+ SUBDAEMON=' hsmd:remote_hsmd' \
18+ pytest \
19+ $THETEST \
20+ -v --timeout=550 --timeout_method=thread -x -s \
21+ | & tee log
You can’t perform that action at this time.
0 commit comments