Browse Source

Merge JoinMarket-Org/joinmarket-clientserver#1584: Do not reinstall on test

1cb20d5ae6 Do not reinstall on test (roshii)

Pull request description:

  Removing `pip install .[test]` step from test script. It does not make sense to reinstall everything when test are ran especially with editable install.

ACKs for top commit:
  kristapsk:
    re-ACK 1cb20d5ae6

Tree-SHA512: 7a35f1f7f2160b84e97819f0f91655c551e8343921f734a0092d3fdaad76d46afcf2f053ad55964120240314dced4557d55c44d299e4622a50b55851b4b5df73
master
Kristaps Kaupe 2 years ago
parent
commit
bbb6dc19de
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 4
      test/run_tests.sh

4
test/run_tests.sh

@ -181,10 +181,6 @@ run_jm_tests ()
mkdir -p miniircd
tar -xzf miniircd.tar.gz -C ./miniircd --strip-components=1
fi
if ! pip install -e '.[test]'; then
echo "Joinmarket could not be installed. Exiting."
return 1
fi
if [[ ! -L ./joinmarket.cfg && -e ./joinmarket.cfg ]]; then
mv ./joinmarket.cfg ./joinmarket.cfg.bak
echo "file 'joinmarket.cfg' moved to 'joinmarket.cfg.bak'"

Loading…
Cancel
Save