[go: up one dir, main page]

Menu

[8e729d]: / .travis.yml  Maximize  Restore  History

Download this file

23 lines (19 with data), 493 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
sudo: enabled
language: python
python:
- 3.6
- 3.5
notifications:
slack: "cryptobotgroupe:vYDDCLRne52jPGVtN6cMiUkb"
email: false
install:
- sudo bash ./docs/install/linux_dependencies.sh
- pip3 install -r pre_requirements.txt
- pip3 install -r requirements.txt
- cp ./config/default_config.json ./config.json
- python3 start.py -p install all
script:
- pip3 install -r dev_requirements.txt
- pytest --cov=. --cov-config=.coveragerc tests/
after_success:
- coveralls