forked from csu/pyquora
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
48 lines (38 loc) · 769 Bytes
/
.travis.yml
File metadata and controls
48 lines (38 loc) · 769 Bytes
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
43
44
45
46
47
48
os:
- linux
python:
- "2.7"
- "3.6"
- "nightly"
- "pypy"
branches:
only:
- master
before_install:
# Show build setup
- uname -a
- cat /etc/os-release
- pwd
- free -tm
- python --version
- git --version
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
# install dependencies
install:
- python setup.py install
- python setup.py test
# run tests
script:
- "nosetests --with-coverage --cover-package=quora"
after_failure:
- bash <(curl -s https://codecov.io/bash)
after_success:
- bash <(curl -s https://codecov.io/bash)
# email notifications
notifications:
email:
recipients:
- ralic.lo.eng@ieee.org
on_success: always # default: change
on_failure: never # default: always