forked from Sirius-social/sirius-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (37 loc) · 1.07 KB
/
.travis.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
language: python
services:
- docker
before_install:
# Run TestSuite
- cd ./test_suite
- docker-compose up -d
- cd ..
- sleep 60 # Wait for TestSuite is ready
python:
# - "3.6" # current default Python on Travis CI
# - "3.7"
- "3.8"
# - "nightly" # nightly build
install:
- pip install -r requirements.txt
script:
- pytest tests/test_messages.py
- pytest tests/test_encryption.py
- pytest tests/test_future_promise.py
- pytest tests/test_hub.py
- pytest tests/test_agent.py
- pytest tests/test_storages.py
- pytest tests/test_wallet.py
- pytest tests/test_microledgers.py
- pytest tests/test_ledgers.py
- pytest tests/test_coprotocols.py
- pytest tests/test_pairwise.py
- pytest tests/test_consensus_simple.py
- pytest tests/test_0113_query_answer.py
- pytest tests/test_0160_conn_protocol.py
- pytest tests/test_0048_trust_ping.py
- pytest tests/test_0036_issue_credential.py
- pytest tests/test_0037_verify_proof.py
- pytest tests/test_performance.py
- pytest tests/test_non_secrets.py
- pytest tests/test_locks.py