Host-customized fork of https://github.com/tecnovert/basicswap/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
468 B
26 lines
468 B
2 years ago
|
## Guix
|
||
|
|
||
|
Start a development environment
|
||
|
|
||
|
guix shell --pure -L. -D basicswap
|
||
|
|
||
|
|
||
|
Run tests
|
||
|
|
||
|
export PYTHONPATH=$(pwd)
|
||
|
|
||
|
# Prepare coin binaries - required once
|
||
|
python ./bin/basicswap-prepare.py -preparebinonly --withcoins=monero,bitcoin,particl,litecoin
|
||
|
|
||
|
pytest -vs tests/basicswap/test_run.py::Test::test_02_part_ltc
|
||
|
|
||
|
|
||
|
Install package
|
||
|
|
||
|
guix package --install -L. basicswap
|
||
|
|
||
|
|
||
|
Create a guix pack
|
||
|
|
||
|
guix pack -RR -S /opt/gnu/bin=bin -L. basicswap
|