Skip to content

Commit

Permalink
Fix CI venv
Browse files Browse the repository at this point in the history
  • Loading branch information
MrNaif2018 committed Aug 14, 2020
1 parent 0367a3a commit ac02828
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
- run:
name: install library
command: |
python3 -m venv venv
. venv/bin/activate
python3 -m venv ~/venv
. ~/venv/bin/activate
python setup.py install
pip install -r test-requirements.txt
- run:
name: install daemon
command: |
. venv/bin/activate
. ~/venv/bin/activate
sudo apt install libsecp256k1-dev
git clone https://github.com/MrNaif2018/bitcart ~/bitcart-daemon
cd ~/bitcart-daemon
Expand All @@ -30,15 +30,15 @@ jobs:
- run:
name: prepare daemon
command: |
. venv/bin/activate
. ~/venv/bin/activate
cd ~/bitcart-daemon
BTC_DEBUG=true BTC_LIGHTNING=true BTC_NETWORK=testnet python3 daemons/btc.py
background: true

- run:
name: run tests
command: |
. venv/bin/activate
. ~/venv/bin/activate
make ci
codecov
Expand Down

0 comments on commit ac02828

Please sign in to comment.