File tree Expand file tree Collapse file tree 5 files changed +8
-7
lines changed
Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 3131 script :
3232 - pip3 install -r requirements.txt
3333 - pip3 install -e .
34+ - pip3 install -r test_requirements.txt
3435 # pytest --docker not working? Uncomment this for better debugging:
3536 # - python3 tests/conftest.py
3637 - pytest --docker
Original file line number Diff line number Diff line change @@ -46,4 +46,5 @@ before_install:
4646 - set -o errexit; source ./tests/install_bitcoind.sh
4747script :
4848 - pip install -e .
49+ - pip install -r test_requirements.txt
4950 - pytest
Original file line number Diff line number Diff line change 22
33Install dependencies:
44
5- HWI support requires ` libusb ` (necessary? Or is ` pip install libusb1 ` sufficient?):
65* Ubuntu/Debian: ` sudo apt install libusb-1.0-0-dev libudev-dev `
76* macOS: ` brew install libusb `
87
@@ -11,7 +10,6 @@ git clone https://github.com/cryptoadvance/specter-desktop.git
1110cd specter-desktop
1211virtualenv --python=python3 .env
1312source .env/bin/activate
14- pip3 install -r requirements.txt
1513pip3 install -e .
1614```
1715
@@ -25,8 +23,9 @@ python3 -m cryptoadvance.specter server
2523# Run the tests
2624Run the tests (still very limited):
2725
28- ```
26+ ``` sh
2927pip3 install -e .
28+ pip3 install -r test_requirements.txt
3029
3130# needs a bitcoind on your path
3231pytest
Original file line number Diff line number Diff line change @@ -11,7 +11,3 @@ python-dotenv==0.13.0
1111requests == 2.23.0
1212six == 1.12.0
1313stem == 1.8.0
14- # only for testing currently
15- docker == 4.1.0
16- pytest == 5.2.2
17- PySocks == 1.7.1
Original file line number Diff line number Diff line change 1+ # requirements for testing
2+ docker==4.1.0
3+ pytest==5.2.2
4+ PySocks==1.7.1
You can’t perform that action at this time.
0 commit comments