-
Notifications
You must be signed in to change notification settings - Fork 28
/
.travis.yml
34 lines (26 loc) · 874 Bytes
/
.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
sudo: false
language: python
python:
- 3.6
notifications:
email: false
env:
global:
- secure: "Eq7T9I/6s+z9ESn2XXvMK25VdjR3URXZw/rPh4gF1OfDu3cbXbSzXgbv28A0SHh6OQUQeK6MMFUo+EhJXmDK3Waw3f0e1DAHFN99SgRMld8Atv/7/xUDfiobYjC3XMLlX4kJHL1I/mcDm960mzwKOCu/O3sc1ql/AyNsuFRCqoU="
- secure: "R1vVXMDSWchzQ/ABgyjv2PpUq9kDSMRP+lFv7w9bdnrygdOZpekQatvbMXIhsxu27FzoVSCX1uJ0SUCcCHCs2AVMtTay6ym6Vmw2ccy68++wr4GI4HN6VQs8nqaOysw/EtBlTCdpsxUtglkaoJlSv/RvtW3Sou4a8RqmRpfNR8A="
branches:
only:
- master
- develop
# command to install dependencies
install:
- pip install --upgrade pip setuptools
- pip install coverage coveralls twine wheel
- pip install -r requirements.txt
- python setup.py install
# command to run tests
script: nosetests --with-coverage --cover-package=pybea
# command to run coveralls
after_success:
- coveralls
- scripts/publish.sh