forked from CNTRPRTY/counterparty-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
24 lines (24 loc) · 1.59 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Keep this as non-docker for now, to give some variety to our test configurations, as travis builds with docker
dependencies:
override:
- rm -rf /home/ubuntu/virtualenvs/venv-3.4.1/bin/serpent
- pip install -r requirements.txt
- python setup.py install --with-serpent
test:
override:
- py.test --verbose --capture=no counterpartylib/test/unit_test.py
- py.test --verbose --capture=no counterpartylib/test/parse_block_test.py
- py.test --verbose --capture=no --skiptestbook=all counterpartylib/test/integration_test.py
- py.test --verbose --capture=no counterpartylib/test/contracts_test.py
- py.test --verbose --capture=no --skiptestbook=mainnet -k test_book counterpartylib/test/reparse_test.py
- py.test --verbose --capture=no --skiptestbook=testnet -k test_book counterpartylib/test/reparse_test.py
- py.test --verbose --capture=no counterpartylib/test/database_version_test.py
machine:
pre:
- mkdir -p ~/.local/share/counterparty;
- wget https://s3.amazonaws.com/counterparty-bootstrap/counterparty-db-testnet.latest.tar.gz -O ~/.local/share/counterparty/counterparty-db-testnet.latest.tar.gz;
- tar -C ~/.local/share/counterparty -xvzf ~/.local/share/counterparty/counterparty-db-testnet.latest.tar.gz;
- wget https://s3.amazonaws.com/counterparty-bootstrap/counterparty-db.latest.tar.gz -O ~/.local/share/counterparty/counterparty-db.latest.tar.gz;
- tar -C ~/.local/share/counterparty -xvzf ~/.local/share/counterparty/counterparty-db.latest.tar.gz;
python:
version: 3.4.1