mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-16 15:58:17 +00:00
26 lines
535 B
Markdown
26 lines
535 B
Markdown
## Guix
|
|
|
|
Start a development environment
|
|
(openssl is included only to set SSL_CERTS_DIRS)
|
|
|
|
guix shell --pure -L. openssl -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 basicswap package
|
|
|
|
guix package --install -L. basicswap
|
|
|
|
|
|
Create a guix pack
|
|
|
|
guix pack -RR -S /opt/gnu/bin=bin -L. basicswap
|